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

Basic Details

{{ $errors->first('employee_name') }}
{{ $errors->first('phone_number') }}
{{ $errors->first('email') }}
{{ $errors->first('gender') }}
{{ $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('cold_storage_id') }}
{{ $errors->first('salary') }}
{{ $errors->first('start_date') }}
{{ $errors->first('end_date') }}
{{ $errors->first('address') }}

KYC Details

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

Bank Details

{{ $errors->first('passing_year') }}
{{ $errors->first('passing_year') }}
{{ $errors->first('passing_year') }}
{{ $errors->first('blank_cheque') }}
{{ $errors->first('cheque_number') }}
{{ Form::close() }}
@endsection @section('page-js') @endsection