{!! APFrmErrHelp::showErrorsNotice($errors) !!} @include('flash::message') @if(isset($user)) {!! Form::model($user, array('method' => 'put', 'route' => array('update.user', $user->id), 'class' => 'form', 'files'=>true)) !!} {!! Form::hidden('id', $user->id) !!} @else {!! Form::open(array('method' => 'post', 'route' => 'store.user', 'class' => 'form', 'files'=>true)) !!} @endif
Select Profile Image Change {!! Form::file('image', null, array('id'=>'image')) !!} Remove
{!! APFrmErrHelp::showErrors($errors, 'image') !!}
@if(isset($user))
{{ ImgUploader::print_image("user_images/$user->image") }}
@endif
{!! Form::label('first_name', 'First Name', ['class' => 'bold']) !!} {!! Form::text('first_name', null, array('class'=>'form-control', 'id'=>'first_name', 'placeholder'=>'First Name')) !!} {!! APFrmErrHelp::showErrors($errors, 'first_name') !!}
{!! Form::label('middle_name', 'Middle Name', ['class' => 'bold']) !!} {!! Form::text('middle_name', null, array('class'=>'form-control', 'id'=>'middle_name', 'placeholder'=>'Middle Name')) !!} {!! APFrmErrHelp::showErrors($errors, 'middle_name') !!}
{!! Form::label('last_name', 'Last Name', ['class' => 'bold']) !!} {!! Form::text('last_name', null, array('class'=>'form-control', 'id'=>'last_name', 'placeholder'=>'Last Name')) !!} {!! APFrmErrHelp::showErrors($errors, 'last_name') !!}
{!! Form::label('email', 'Email', ['class' => 'bold']) !!} {!! Form::text('email', null, array('class'=>'form-control', 'id'=>'email', 'placeholder'=>'Email')) !!} {!! APFrmErrHelp::showErrors($errors, 'email') !!}
{!! Form::label('password', 'Password', ['class' => 'bold']) !!} {!! Form::password('password', array('class'=>'form-control', 'id'=>'password', 'placeholder'=>'Password')) !!} {!! APFrmErrHelp::showErrors($errors, 'password') !!}
{!! Form::label('father_name', 'Father Name', ['class' => 'bold']) !!} {!! Form::text('father_name', null, array('class'=>'form-control', 'id'=>'father_name', 'placeholder'=>'Father Name')) !!} {!! APFrmErrHelp::showErrors($errors, 'father_name') !!}
{!! Form::label('date_of_birth', 'Date of Birth', ['class' => 'bold']) !!} {!! Form::text('date_of_birth', null, array('class'=>'form-control datepicker', 'id'=>'date_of_birth', 'placeholder'=>'Date of Birth', 'autocomplete'=>'off')) !!} {!! APFrmErrHelp::showErrors($errors, 'date_of_birth') !!}
{!! Form::label('gender_id', 'Gender', ['class' => 'bold']) !!} {!! Form::select('gender_id', [''=>'Select Gender']+$genders, null, array('class'=>'form-control', 'id'=>'gender_id')) !!} {!! APFrmErrHelp::showErrors($errors, 'gender_id') !!}
{!! Form::label('marital_status_id', 'Marital Status', ['class' => 'bold']) !!} {!! Form::select('marital_status_id', [''=>'Select Marital Status']+$maritalStatuses, null, array('class'=>'form-control', 'id'=>'marital_status_id')) !!} {!! APFrmErrHelp::showErrors($errors, 'marital_status_id') !!}
{!! Form::label('nationality_id', 'Nationality', ['class' => 'bold']) !!} {!! Form::select('nationality_id', [''=>'Select Nationality']+$nationalities, null, array('class'=>'form-control', 'id'=>'nationality_id')) !!} {!! APFrmErrHelp::showErrors($errors, 'nationality_id') !!}
{!! Form::label('national_id_card_number', 'National ID Card#', ['class' => 'bold']) !!} {!! Form::text('national_id_card_number', null, array('class'=>'form-control', 'id'=>'national_id_card_number', 'placeholder'=>'National ID Card#')) !!} {!! APFrmErrHelp::showErrors($errors, 'national_id_card_number') !!}
{!! Form::label('country_id', 'Country', ['class' => 'bold']) !!} {!! Form::select('country_id', [''=>'Select Country']+$countries, old('country_id', (isset($user))? $user->country_id:$siteSetting->default_country_id), array('class'=>'form-control', 'id'=>'country_id')) !!} {!! APFrmErrHelp::showErrors($errors, 'country_id') !!}
{!! Form::label('state_id', 'State', ['class' => 'bold']) !!} {!! Form::select('state_id', [''=>'Select State'], null, array('class'=>'form-control', 'id'=>'state_id')) !!} {!! APFrmErrHelp::showErrors($errors, 'state_id') !!}
{!! Form::label('city_id', 'City', ['class' => 'bold']) !!} {!! Form::select('city_id', [''=>'Select City'], null, array('class'=>'form-control', 'id'=>'city_id')) !!} {!! APFrmErrHelp::showErrors($errors, 'city_id') !!}
{!! Form::label('phone', 'Phone', ['class' => 'bold']) !!} {!! Form::text('phone', null, array('class'=>'form-control', 'id'=>'phone', 'placeholder'=>'Phone')) !!} {!! APFrmErrHelp::showErrors($errors, 'phone') !!}
{!! Form::label('mobile_num', 'Mobile Number', ['class' => 'bold']) !!} {!! Form::text('mobile_num', null, array('class'=>'form-control', 'id'=>'mobile_num', 'placeholder'=>'Mobile Number')) !!} {!! APFrmErrHelp::showErrors($errors, 'mobile_num') !!}
{!! Form::label('job_experience_id', 'Experience', ['class' => 'bold']) !!} {!! Form::select('job_experience_id', [''=>'Select Experience']+$jobExperiences, null, array('class'=>'form-control', 'id'=>'job_experience_id')) !!} {!! APFrmErrHelp::showErrors($errors, 'job_experience_id') !!}
{!! Form::label('career_level_id', 'Career Level', ['class' => 'bold']) !!} {!! Form::select('career_level_id', [''=>'Select Career Level']+$careerLevels, null, array('class'=>'form-control', 'id'=>'career_level_id')) !!} {!! APFrmErrHelp::showErrors($errors, 'career_level_id') !!}
{!! Form::label('industry_id', 'Industry', ['class' => 'bold']) !!} {!! Form::select('industry_id', [''=>'Select Industry']+$industries, null, array('class'=>'form-control', 'id'=>'industry_id')) !!} {!! APFrmErrHelp::showErrors($errors, 'industry_id') !!}
{!! Form::label('functional_area_id', 'Functional Area', ['class' => 'bold']) !!} {!! Form::select('functional_area_id', [''=>'Select Functional Area']+$functionalAreas, null, array('class'=>'form-control', 'id'=>'functional_area_id')) !!} {!! APFrmErrHelp::showErrors($errors, 'functional_area_id') !!}
{!! Form::label('current_salary', 'Current Salary', ['class' => 'bold']) !!} {!! Form::text('current_salary', null, array('class'=>'form-control', 'id'=>'current_salary', 'placeholder'=>'Current Salary')) !!} {!! APFrmErrHelp::showErrors($errors, 'current_salary') !!}
{!! Form::label('expected_salary', 'Expected Salary', ['class' => 'bold']) !!} {!! Form::text('expected_salary', null, array('class'=>'form-control', 'id'=>'expected_salary', 'placeholder'=>'Expected Salary')) !!} {!! APFrmErrHelp::showErrors($errors, 'expected_salary') !!}
{!! Form::label('salary_currency', 'Salary Currency', ['class' => 'bold']) !!} {!! Form::text('salary_currency', null, array('class'=>'form-control', 'id'=>'salary_currency', 'placeholder'=>'Salary Currency', 'autocomplete'=>'off')) !!} {!! APFrmErrHelp::showErrors($errors, 'salary_currency') !!}
{!! Form::label('street_address', 'Street Address', ['class' => 'bold']) !!} {!! Form::textarea('street_address', null, array('class'=>'form-control', 'id'=>'street_address', 'placeholder'=>'Street Address')) !!} {!! APFrmErrHelp::showErrors($errors, 'street_address') !!}
@if((bool)config('jobseeker.is_jobseeker_package_active'))
{!! Form::label('job_seeker_package_id', 'Package', ['class' => 'bold']) !!} {!! Form::select('job_seeker_package_id', ['' => 'Select Package']+$packages, null, array('class'=>'form-control', 'id'=>'job_seeker_package_id')) !!} {!! APFrmErrHelp::showErrors($errors, 'job_seeker_package_id') !!}
@if(isset($user) && $user->package_id > 0)
{!! Form::label('package', 'Package : ', ['class' => 'bold']) !!} {{$user->getPackage('package_title')}}
{!! Form::label('package_Duration', 'Package Duration : ', ['class' => 'bold']) !!} {{$user->package_start_date->format('d M, Y')}} - {{$user->package_end_date->format('d M, Y')}}
{!! Form::label('package_quota', 'Availed quota : ', ['class' => 'bold']) !!} {{$user->availed_jobs_quota}} / {{$user->jobs_quota}}

@endif @endif
{!! Form::label('is_immediate_available', 'Is Immediate available?', ['class' => 'bold']) !!}