{!! Form::label('first_name','First name') !!}
{!! Form::text('first_name' , $user_profile->first_name , ['class' => 'form-control','placeholder' => 'First name','required'=>'true']) !!}
{!! Form::label('email','Email') !!}
{!! Form::email('email' , $user_profile->email , ['class' => 'form-control','placeholder' => 'Email','required'=>'true']) !!}
{!! Form::label('cell_phone','Primary Phone') !!}
{!! Form::text('cell_phone' , $user_profile->cell_phone , ['class' => 'form-control','placeholder' => 'Primary Phone','required'=>'true']) !!}
{!! Form::label('last_name','Last name:') !!}
{!! Form::text('last_name' , $user_profile->last_name , ['class' => 'form-control','placeholder' => 'Last name','required'=>'true']) !!}
@if(strpos($BirthDate,'1900') == false)
@endif
{!! Form::label('work_phone','Secondary Phone') !!}
{!! Form::text('work_phone' , $user_profile->work_phone , ['class' => 'form-control','placeholder' => 'Secondary Phone','required'=>'true']) !!}