{!! Form::open([ 'route' => 'employee-master.store-mediclaim', 'method' => 'POST', 'id' => 'employee-insurance-form', 'enctype' => 'multipart/form-data', ]) !!} @csrf {!! Form::hidden('id', $employee->id) !!}
{{-- Employee Info --}}
Employee Code:
{{ $employee->employee_code ?? '-' }}
Name (As Per Aadhar Card):
{{ $employee->employee_name ?? '-' }}
Gender:
{{ $employee->gender ?? '-' }}
Date Of Birth:
{{ date('d-m-Y', strtotime($employee->date_of_birth)) }}
{{-- Personal Insurance --}}
{!! Form::label('personal_insurance', 'Do you have Personal Insurance?', ['class' => 'form-label fw-bold']) !!} *
{{ $errors->first('personal_insurance') }}
{{-- Insurance Fields --}} {{-- Dependent Section --}} {{-- Children Section --}}
{{-- Notes --}}
Notes:
  • Insurance coverage will be covered for Employee, Spouse and 2 children only.
  • For team members having CTC up to Rs. 8 Lacs, premium will be paid by the company.
  • For team members having CTC above Rs. 8 Lacs, premium will be shared equally between company and employees.
  • You are eligible for the benefits of the company's mediclaim policy from your date of joining.
  • Participation in the company's mediclaim policy is optional only if you already have an equivalent personal mediclaim policy. In such a case, you are required to submit a copy of your existing policy for our records.
  • If you do not provide proof of personal mediclaim policy, enrollment in the company's mediclaim policy will be mandatory.
{!! Form::close() !!}
{{-- Scripts --}}