My information

{!! Form::open(['novalidate' => 'novalidate', 'onsubmit' => 'return updateUserProfile(this);' , 'files' => true , 'class' => 'grs-form' ]) !!}
{!! 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('password','Password:') !!}    -   Change Password
{!! 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)
{!! Form::label('email','Birthday') !!}
@endif
{!! Form::label('work_phone','Secondary Phone') !!} {!! Form::text('work_phone' , $user_profile->work_phone , ['class' => 'form-control','placeholder' => 'Secondary Phone','required'=>'true']) !!}
@if( 1 == 2 )
Avatar
@endif
@include('frontend.template.'.activeTemplate().'.my-profile._custom_field')
{!! Form::close() !!}