Copy Quotation

{{ Form::open( [ 'method'=> 'POST', 'url' => route('copy.clients'), 'id'=> 'copy_client', 'enctype' => 'multipart/form-data']) }}
{{ Form::select( 'fromClient', @$fromClients, '',[ "class" => "form-control select2", "onchange" => "changeToClient(this)", "id" => "fromClient"] ) }}
{{ Form::text('search','',['class'=>'form-control', 'placeholder'=>'Search', 'onkeyup'=>'searchToClient()']) }}
@foreach($toClients as $clients) @endforeach
{{ Form::checkbox('check-all-client','',false,['class'=>'minimal']) }} Name
No records found
{{Form::checkbox('check-clients',$clients->id,'',['class'=>'check-clients minimal', 'data-from' => $clients->id]) }} {{$clients->name}}
{{ Form::close() }}