{{ Form::model($clients, ['route' => ['clients.update', $clients->id], 'method' => 'put', 'role' => 'form','enctype'=>'multipart/form-data','id'=>'clientsEditForm'] ) }}
Fields marked as (*) are Mandatory
{{ Form::text('name',null,['class'=>'form-control','placeholder'=>'Enter Client name','autocomplete'=>'off','id'=>'name','required'],old('name'))}}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{ Form::file('image', ['id'=>'client_image' ,'class' => 'form-control'],old('image'))}}
@if($errors->has('image'))
{{ $errors->first('image') }}
@endif
@if(file_exists(public_path('uploads/clientsImage/'.$clients->image)) && $clients->image)
}})
@else
 }})
@endif