{!! Form::label('firstname', '* First Name',array('class'=>'lbl' )); !!}
{!! Form::text('firstname',$manager->fldManagerFirstname,array('id'=>'firstname','required','class'=>'text')) !!}
@if($errors->updateProfile->first('firstname'))
{!!$errors->updateProfile->first('firstname')!!}
@endif
{!! Form::label('lastname', '* Last Name',array('class'=>'lbl' )); !!}
{!! Form::text('lastname',$manager->fldManagerLastname,array('id'=>'lastname','required','class'=>'text')) !!}
@if($errors->updateProfile->first('lastname'))
{!!$errors->updateProfile->first('lastname')!!}
@endif
{!! Form::label('phone', '* Contact # eg.. (123) 456-7890',array('class'=>'lbl' )); !!}
{!! Form::text('phone',$manager->fldManagerPhoneNo,array('id'=>'phone','required','class'=>'text phone_us')) !!}
@if($errors->updateProfile->first('phone'))
{!!$errors->updateProfile->first('phone')!!}
@endif
{!! Form::label('email', '* Email Address',array('class'=>'lbl' )); !!}
{!! Form::email('email',$manager->fldManagerEmail,array('id'=>'email','required','class'=>'text','readonly','style'=>'background-color: #F5F4F3;')) !!}
@if($errors->updateProfile->first('email'))
{!!$errors->updateProfile->first('email')!!}
@endif
Address Information
{!! Form::label('address', '* Street',array('class'=>'lbl' )); !!}
{!! Form::text('address',$manager->fldManagerAddress,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',$manager->fldManagerCity,array('id'=>'city','required','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($manager->fldManagerState) ? $manager->fldManagerState : "",array('id'=>'state','data-placeholder'=>'Select State', 'class'=>'required')) !!}
@if($errors->updateProfile->first('state'))
Please select your State
@endif
{!! Form::label('zip', '* ZIP',array('class'=>'lbl' )); !!}
{!! Form::text('zip',$manager->fldManagerZip,array('id'=>'zip','required','class'=>'text')) !!}
@if($errors->updateProfile->first('zip'))
{!!$errors->updateProfile->first('zip')!!}
@endif
{!! Form::label('career', 'Career',array('class'=>'lbl' )); !!}
{!! Form::text('career',$manager->fldManagerProfession,array('id'=>'career','class'=>'text')) !!}
{!! Form::label('authorization', 'Authorization',array('class'=>'lbl' )); !!}
{!! Form::text('authorization',$manager->fldManagerAuthorization,array('id'=>'authorization','class'=>'text')) !!}