{{ Form::label('First name') }} {{ Form::text('first_name', $client->first_name, ['class' => 'form-control bg-white' . ($errors->has('first_name') ? ' is-invalid' : ''), 'placeholder' => 'Enter the first name']) }} {!! $errors->first('first_name', '
:message
') !!}
{{ Form::label('Last Name') }} {{ Form::text('last_name', $client->last_name, ['class' => 'form-control bg-white' . ($errors->has('last_name') ? ' is-invalid' : ''), 'placeholder' => 'Enter the last name']) }} {!! $errors->first('last_name', '
:message
') !!}
{{ Form::label('Company') }} {{ Form::text('company', $client->company, ['class' => 'form-control bg-white' . ($errors->has('company') ? ' is-invalid' : ''), 'placeholder' => 'Enter the company name']) }} {!! $errors->first('company', '
:message
') !!}
{{ Form::label('Location') }} {{ Form::text('location', $client->location, ['class' => 'form-control bg-white' . ($errors->has('location') ? ' is-invalid' : ''), 'placeholder' => 'Enter primary location']) }} {!! $errors->first('location', '
:message
') !!}
{{ Form::label('email') }} {{ Form::text('email', $client->email, ['class' => 'form-control bg-white' . ($errors->has('email') ? ' is-invalid' : ''), 'placeholder' => 'Enter the email', 'autocomplete' => 'off', 'value' => '']) }} {!! $errors->first('email', '
:message
') !!}
{!! $errors->first('password', '
:message
') !!}
{{-- --}}