{{ 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('email') }} {{ Form::text('email', $client->email, ['class' => 'form-control bg-white' . ($errors->has('email') ? ' is-invalid' : ''), 'placeholder' => 'Enter the email']) }} {!! $errors->first('email', '
:message
') !!}