{{Form::select('highest_education_id',$highestEducationArr,$highestEducationId,['id' => 'highest_education_id','class'=>'form-control'])}} @if ($errors->has('highest_education_id')) {{ $errors->first('highest_education_id') }} @endif
{{Form::text('additional_education', null,['id' => 'additional_education','class'=>'form-control','placeholder'=>'Bachelors in Business Management'])}} @if ($errors->has('additional_education')) {{ $errors->first('additional_education') }} @endif
{{Form::select('employment_type_id',$employmentTypeArr,$employmentTypeId,['id' => 'employment_type_id','class'=>'form-control'])}} @if ($errors->has('employment_type_id')) {{ $errors->first('employment_type_id') }} @endif
{{Form::select('designation_id',$designationArr,Null,['id' => 'designation_id','class'=>'form-control'])}} @if ($errors->has('designation_id')) {{ $errors->first('designation_id') }} @endif
{{Form::select('salary_id',$salaryArr,$salaryId,['id' => 'salary_id','class'=>'form-control'])}} @if ($errors->has('salary_id')) {{ $errors->first('salary_id') }} @endif
{{Form::textarea('work_address', null,['id' => 'work_address','class'=>'form-control','placeholder'=>'Address'])}} @if ($errors->has('work_address')) {{ $errors->first('work_address') }} @endif