{!! Form::open(array('files'=>'true', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('emp_id', $data['attributes']['emp_id'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('emp_id', $data['model']->emp_id, ['class' => 'form-control', 'id' => 'emp_id', 'type' => 'text', 'placeholder' => $data['placeholder']['emp_id']]) !!}

{{ $errors->error->first('emp_id') }}

{!! Form::label('emp_name_english', $data['attributes']['emp_name_english'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('emp_name_english', $data['model']->emp_name_english, ['class' => 'form-control', 'id' => 'emp_id', 'type' => 'text', 'placeholder' => $data['placeholder']['emp_name_english']]) !!}

{{ $errors->error->first('emp_name_english') }}

{!! Form::label('emp_name_bangla', $data['attributes']['emp_name_bangla'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('emp_name_bangla', $data['model']->emp_name_bangla, ['class' => 'form-control', 'id' => 'emp_name_bangla', 'type' => 'text', 'placeholder' => $data['placeholder']['emp_name_bangla']]) !!}

{{ $errors->error->first('emp_name_bangla') }}

{!! Form::label('father_name_english', $data['attributes']['father_name_english'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('father_name_english', $data['model']->father_name_english, ['class' => 'form-control', 'id' => 'father_name_english', 'type' => 'text', 'placeholder' => $data['placeholder']['father_name_english'], 'required' => 'required']) !!}

{{ $errors->error->first('father_name_english') }}

{!! Form::label('father_name_bangla', $data['attributes']['father_name_bangla'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('father_name_bangla', $data['model']->father_name_bangla, ['class' => 'form-control', 'id' => 'father_name_bangla', 'type' => 'text', 'placeholder' => $data['placeholder']['father_name_bangla']]) !!}

{{ $errors->error->first('father_name_bangla') }}

{!! Form::label('mother_name_english', $data['attributes']['mother_name_english'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('mother_name_english', $data['model']->mother_name_english, ['class' => 'form-control', 'id' => 'mother_name_english', 'type' => 'text', 'placeholder' => $data['placeholder']['mother_name_english'], 'required' => 'required']) !!}

{{ $errors->error->first('mother_name_english') }}

{!! Form::label('mother_name_bangla', $data['attributes']['mother_name_bangla'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('mother_name_bangla', $data['model']->mother_name_bangla, ['class' => 'form-control', 'id' => 'mother_name_bangla', 'type' => 'text', 'placeholder' => $data['placeholder']['mother_name_bangla']]) !!}

{{ $errors->error->first('mother_name_bangla') }}

{!! Form::label('sex', $data['attributes']['sex'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::radio('sex', 'Male', ($data['model']->sex=='Male')?true:false, ['class' => 'radio_button', 'id' => 'sex_male']) !!} Male {!! Form::radio('sex', 'Female', ($data['model']->sex=='Female')?true:false, ['class' => 'radio_button', 'id' => 'sex_female']) !!} Female

{{ $errors->error->first('sex') }}

{!! Form::label('religion', $data['attributes']['religion'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('religion', $data['easycode']->getReligionData(), $data['model']->religion, ['class' => 'form-control', 'id' => 'religion', 'required' => 'required']) !!}

{{ $errors->error->first('religion') }}

{!! Form::label('date_of_birth', $data['attributes']['date_of_birth'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('date_of_birth', $data['model']->date_of_birth, ['class' => 'form-control datepicker', 'id' => 'date_of_birth', 'type' => 'text', 'placeholder' => $data['placeholder']['date_of_birth'], 'required' => 'required']) !!}

{{ $errors->error->first('date_of_birth') }}

{!! Form::label('blood_group', $data['attributes']['blood_group'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('blood_group', $data['model']::bloodGroupOption('Select any'), $data['model']->blood_group, ['class' => 'form-control', 'id' => 'blood_group', 'required'=>'required']) !!}

{{ $errors->error->first('blood_group') }}

{!! Form::label('nid_no', $data['attributes']['nid_no'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('nid_no', $data['model']->nid_no, ['class' => 'form-control', 'id' => 'nid_no', 'type' => 'text', 'placeholder' => $data['placeholder']['nid_no'], 'onClick' => 'check(1)']) !!}

{{ $errors->error->first('nid_no') }}

{!! Form::label('mobile_number', $data['attributes']['mobile_number'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('mobile_number', $data['model']->mobile_number, ['class' => 'form-control', 'id' => 'mobile_number', 'type' => 'text', 'placeholder' => $data['placeholder']['mobile_number'], 'required'=>'required']) !!}

{{ $errors->error->first('mobile_number') }}

{!! Form::label('birth_certificate_no', $data['attributes']['birth_certificate_no'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('birth_certificate_no', $data['model']->birth_certificate_no, ['class' => 'form-control', 'id' => 'birth_certificate_no', 'type' => 'text', 'placeholder' => $data['placeholder']['birth_certificate_no'], 'onClick' => 'check(1)']) !!}

{{ $errors->error->first('birth_certificate_no') }}

{!! Form::label('phone', $data['attributes']['phone'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('phone', $data['model']->phone, ['class' => 'form-control', 'id' => 'phone', 'type' => 'text', 'placeholder' => $data['placeholder']['phone']]) !!}

{{ $errors->error->first('phone') }}

{!! Form::label('passport_no', $data['attributes']['passport_no'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('passport_no', $data['model']->passport_no, ['class' => 'form-control', 'id' => 'passport_no', 'type' => 'text', 'placeholder' => $data['placeholder']['passport_no'], 'onClick' => 'check(1)']) !!}

{{ $errors->error->first('passport_no') }}

{!! Form::label('email', $data['attributes']['email'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('email', $data['model']->email, ['class' => 'form-control', 'id' => 'email', 'type' => 'text', 'placeholder' => $data['placeholder']['email']]) !!}

{{ $errors->error->first('email') }}

{!! Form::label('tin_number', $data['attributes']['tin_number'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('tin_number', $data['model']->tin_number, ['class' => 'form-control', 'id' => 'tin_number', 'type' => 'text', 'placeholder' => $data['placeholder']['tin_number']]) !!}

{{ $errors->error->first('tin_number') }}

Present Address

{!! Form::label('pre_div_id', $data['attributes']['pre_div_id'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('pre_div_id', $data['divisionData'], $data['model']->pre_div_id, ['class' => 'form-control getPreDis', 'id' => 'pre_div_id', 'required' => 'required', 'onClick'=>'check_previous(2)']) !!}

{{ $errors->error->first('pre_div_id') }}

{!! Form::label('pre_dis_id', $data['attributes']['pre_dis_id'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('pre_dis_id', array(''=>'Select any'), $data['model']->pre_dis_id, ['class' => 'form-control getPreUpa', 'id' => 'pre_dis_id', 'required' => 'required', 'onClick'=>'check_previous(2)']) !!}

{{ $errors->error->first('pre_dis_id') }}

{!! Form::label('pre_upa_id', $data['attributes']['pre_upa_id'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('pre_upa_id', array(''=>'Select any'), $data['model']->pre_upa_id, ['class' => 'form-control getPreUni', 'id' => 'pre_upa_id', 'required' => 'required', 'onClick'=>'check_previous(2)']) !!}

{{ $errors->error->first('pre_upa_id') }}

{!! Form::label('pre_uni_id', $data['attributes']['pre_uni_id'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('pre_uni_id', array(''=>'Select any'), $data['model']->pre_uni_id, ['class' => 'form-control', 'id' => 'pre_uni_id', 'onClick'=>'check_previous(2)']) !!}

{{ $errors->error->first('pre_uni_id') }}

{!! Form::label('present_address', $data['attributes']['present_address'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::textarea('present_address', $data['model']->present_address, ['class' => 'form-control', 'id' => 'present_address', 'rows' => '3', 'placeholder' => $data['placeholder']['present_address'], 'required' => 'required', 'onClick'=>'check_previous(2)']) !!}

{{ $errors->error->first('present_address') }}

Permanent Address Same as Present Address

{!! Form::label('per_div_id', $data['attributes']['per_div_id'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('per_div_id', $data['divisionData'], $data['model']->per_div_id, ['class' => 'form-control getPerDis', 'id' => 'per_div_id']) !!}

{{ $errors->error->first('per_div_id') }}

{!! Form::label('per_dis_id', $data['attributes']['per_dis_id'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('per_dis_id', array(''=>'Select any'), $data['model']->per_dis_id, ['class' => 'form-control getPerUpa', 'id' => 'per_dis_id']) !!}

{{ $errors->error->first('per_dis_id') }}

{!! Form::label('per_upa_id', $data['attributes']['per_upa_id'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('per_upa_id', array(''=>'Select any'), $data['model']->per_upa_id, ['class' => 'form-control getPerUni', 'id' => 'per_upa_id']) !!}

{{ $errors->error->first('per_upa_id') }}

{!! Form::label('per_uni_id', $data['attributes']['per_uni_id'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('per_uni_id', array(''=>'Select any'), $data['model']->per_uni_id, ['class' => 'form-control', 'id' => 'per_uni_id']) !!}

{{ $errors->error->first('per_uni_id') }}

{!! Form::label('permanent_address', $data['attributes']['permanent_address'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::textarea('permanent_address', $data['model']->permanent_address, ['class' => 'form-control', 'id' => 'permanent_address', 'rows' => '3', 'placeholder' => $data['placeholder']['permanent_address']]) !!}

{{ $errors->error->first('permanent_address') }}

{!! Form::label('maritial_status', $data['attributes']['maritial_status'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('maritial_status', $data['model']::maritialStatusOption('Select any'), $data['model']->maritial_status, ['class' => 'form-control', 'id' => 'maritial_status']) !!}

{{ $errors->error->first('maritial_status') }}

{!! Form::label('husbend_wife_name', $data['attributes']['husbend_wife_name'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('husbend_wife_name', $data['model']->husbend_wife_name, ['class' => 'form-control', 'id' => 'husbend_wife_name', 'rows' => '3', 'placeholder' => $data['placeholder']['husbend_wife_name']]) !!}

{{ $errors->error->first('husbend_wife_name') }}

{!! Form::label('number_of_spouses', $data['attributes']['number_of_spouses'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('number_of_spouses', $data['model']->number_of_spouses, ['class' => 'form-control', 'id' => 'number_of_spouses', 'rows' => '3', 'placeholder' => $data['placeholder']['number_of_spouses']]) !!}

{{ $errors->error->first('number_of_spouses') }}

{!! Form::label('home_district', $data['attributes']['home_district'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('home_district', $data['model']->home_district, ['class' => 'form-control', 'id' => 'home_district', 'rows' => '3', 'placeholder' => $data['placeholder']['home_district']]) !!}

{{ $errors->error->first('home_district') }}

{!! Form::label('photo', $data['attributes']['photo'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::file('photo') !!}

{{ $errors->error->first('photo') }}


Warning: Undefined variable $data in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/employee/form.blade.php on line 262

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/employee/form.blade.php on line 262

Warning: Attempt to read property "photo" on null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/employee/form.blade.php on line 262
{!! Form::label('signature_organization', $data['attributes']['signature_organization'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::file('signature_organization') !!}

{{ $errors->error->first('signature_organization') }}


Warning: Undefined variable $data in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/employee/form.blade.php on line 275

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/employee/form.blade.php on line 275

Warning: Attempt to read property "signature_organization" on null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/employee/form.blade.php on line 275
{!! Form::label('signature_nid', $data['attributes']['signature_nid'], ['class' => 'col-sm-2 control-label']) !!}
{!! Form::file('signature_nid') !!}

{{ $errors->error->first('signature_nid') }}


Warning: Undefined variable $data in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/employee/form.blade.php on line 286

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/employee/form.blade.php on line 286

Warning: Attempt to read property "signature_nid" on null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr1/employee/form.blade.php on line 286
{!! Form::submit('Save', ['id' => 'add', 'class' => 'btn btn-info', 'name'=>'submit']); !!} {!! Form::submit('Save & Continue', ['id' => 'addncontinue', 'class' => 'btn btn-success', 'name'=>'submit']); !!} Close
{!! Form::close() !!}
@section('footerAssets')