@extends('admin.layouts.layouts') @section('title', 'Create | Employee Master') @section('page-css') @endsection @section('content')
{!! Form::open([ 'route' => 'employee-master.store', 'method' => 'POST', 'id' => 'employee-master-form', 'enctype' => 'multipart/form-data', ]) !!} @csrf

Personal Details

{{ $errors->first('employee_name') }}
{{ $errors->first('short_name') }}
{{ $errors->first('mother_name') }}
{{ $errors->first('phone_number') }}
{{ $errors->first('email') }}
{{ $errors->first('gender') }}
@php $bloodGroups = ['A+', 'A-', 'B+', 'B-', 'O+', 'O-', 'AB+', 'AB-']; @endphp
{{ $errors->first('blood_group') }}
{{ $errors->first('date_of_birth') }}
{{ $errors->first('residential_address') }}
{{ $errors->first('address') }}

Office Details

{{ $errors->first('work_email') }}
{{ $errors->first('date_of_joining') }}
{{ $errors->first('employee_department_id') }}
{{ $errors->first('employee_designation_id') }}
{{ $errors->first('employee_role_id') }}
{{ $errors->first('shift_type_id') }}
{{ $errors->first('reporting_person_id') }}
{{ $errors->first('head_manager') }}
{{ $errors->first('check_in_option') }}
{{--
{{ $errors->first('salary') }}
{{ $errors->first('start_date') }}
{{ $errors->first('end_date') }}
--}}
{{ $errors->first('country') }}
{{ $errors->first('region') }}
{{ $errors->first('area_location') }}
{{ $errors->first('base_location') }}
{{ $errors->first('location_id') }}
{{ $errors->first('pf_no') }}
{{ $errors->first('uan_no') }}
{{ $errors->first('esic_no') }}
{{ $errors->first('welcome_kit') }}
{{ $errors->first('medical_disability') }}

KYC Details

{{ $errors->first('aadhar_number') }}
{{ $errors->first('aadhar_front') }}
{{ $errors->first('aadhar_back') }}
{{ $errors->first('pan_number') }}
{{ $errors->first('pan_file') }}

Personal Bank Details

{{ $errors->first('bank_name') }}
{{ $errors->first('account_no') }}
{{ $errors->first('ifsc_code') }}
{{ $errors->first('blank_cheque') }}
{{ $errors->first('cheque_number') }}

Company Bank Details

{{ $errors->first('company_bank_name') }}
{{ $errors->first('company_account_no') }}
{{ $errors->first('company_ifsc_code') }}

Emergency Contact Details

{{ $errors->first('emergency_contact_1') }}
{{ $errors->first('name_1') }}
{{ $errors->first('name_relation_1') }}
{{ $errors->first('address_1') }}
{{ $errors->first('emergency_contact_2') }}
{{ $errors->first('name_2') }}
{{ $errors->first('name_relation_2') }}
{{ $errors->first('address_2') }}

Work Experience Detail

{{ $errors->first('employer_name') }}
{{ $errors->first('location') }}
{{ $errors->first('starting_salary') }}
{{ $errors->first('leaving_salary') }}
{{ $errors->first('starting_designation') }}
{{ $errors->first('leaving_designation') }}
{{ $errors->first('from_date') }}
{{ $errors->first('to_date') }}
{{ $errors->first('leaving_reason') }}
{{ Form::close() }}
@endsection @section('page-js') @endsection