{!! Form::label('firstname', '* First Name',array('class'=>'lbl' )); !!}
{!! Form::text('firstname',$client->fldClientFirstname,array('id'=>'firstname','class'=>'text')) !!}
@if($errors->updateProfile->first('firstname'))
{!!$errors->updateProfile->first('firstname')!!}
@endif
{!! Form::label('lastname', '* Last Name',array('class'=>'lbl' )); !!}
{!! Form::text('lastname',$client->fldClientLastname,array('id'=>'lastname','class'=>'text')) !!}
@if($errors->updateProfile->first('lastname'))
{!!$errors->updateProfile->first('lastname')!!}
@endif
{!! Form::label('phone', '* Phone Number',array('class'=>'lbl' )); !!}
{!! Form::text('phone', $client->fldClientContact, array('id'=>'phone','required','class'=>'text phone_us')) !!}
{{-- Form::text('phone',$client->fldClientContact,array('id'=>'phone','class'=>'text','pattern'=>'\d{3}[\-]\d{3}[\-]\d{4}')) --}}
@if($errors->updateProfile->first('phone'))
{!!$errors->updateProfile->first('phone')!!}
@endif
{!! Form::label('email', '* Email Address',array('class'=>'lbl' )); !!}
{!! Form::email('email',$client->fldClientEmail,array('id'=>'email','class'=>'text','required','readonly','style'=>'background-color: #F4EDE8;')) !!}
@if($errors->updateProfile->first('email'))
{!!$errors->updateProfile->first('email')!!}
@endif
@if (Session::has('emailError'))
{{Session::get('emailError')}}
@endif
Address Information
{!! Form::label('address', ' * Street',array('class'=>'lbl' )); !!}
{!! Form::text('address',$client->fldClientAddress,array('id'=>'address','class'=>'text')) !!}
@if($errors->updateProfile->first('address'))
{!!$errors->updateProfile->first('address')!!}
@endif
{!! Form::label('city', '* City',array('class'=>'lbl' )); !!}
{!! Form::text('city',$client->fldClientCity,array('id'=>'city','class'=>'text')) !!}
@if($errors->updateProfile->first('city'))
{!!$errors->updateProfile->first('city')!!}
@endif
{!! Form::label('state', '* State',array('class'=>'lbl' )); !!}
{!! Form::select('state',array('' => 'Select one')+App\Models\State::displayState(),isset($client->fldClientState) ? $client->fldClientState : "",array('id'=>'state','data-placeholder'=>'Select State', 'class'=>'required')) !!}
@if($errors->updateProfile->first('state'))
{!!$errors->updateProfile->first('state')!!}
@endif
{!! Form::label('zip', '* ZIP',array('class'=>'lbl' )); !!}
{!! Form::text('zip',$client->fldClientZip,array('id'=>'zip','class'=>'text')) !!}
@if($errors->updateProfile->first('zip'))
{!!$errors->updateProfile->first('zip')!!}
@endif
{!! Form::label('career', 'Career',array('class'=>'lbl' )); !!}
{!! Form::text('career',$client->fldClientCareer,array('id'=>'career','class'=>'text')) !!}
{!! Form::label('authorization', 'Authorization',array('class'=>'lbl' )); !!}
{!! Form::text('authorization',$client->fldClientAuthorization,array('id'=>'authorization','class'=>'text')) !!}