@extends('layouts.website_layout') @section('content')

Apply for Caregiver Training

Join our nationally recognized caregiver training programs and make a difference in elderly care. Complete your application with all required details and documents.

Personal Information

{{ ($personalDetails->first_name ?? '') . ' ' . ($personalDetails->last_name ?? '') ?: 'Not provided' }}
{{ $personalDetails->email ?? 'Not provided' }}
{{ $personalDetails->phone ?? 'Not provided' }}
{{ $personalDetails->dob ?? 'Not provided' }}
@if($personalDetails && $personalDetails->gender) @if($personalDetails->gender == 'M') Male @elseif($personalDetails->gender == 'F') Female @else Other @endif @else Not provided @endif
{{ $personalDetails->address ?? 'Not provided' }}
{{ $personalDetails->city ?? 'Not provided' }}
{{ $personalDetails->pincode ?? 'Not provided' }}

Emergency Contact

{{ $personalDetails->emergency_name ?? 'Not provided' }}
{{ $personalDetails->emergency_phone ?? 'Not provided' }}
{{ $personalDetails->relationship ?? 'Not provided' }}

Educational Details

@if(isset($educationDetails) && $educationDetails->count() > 0) @foreach($educationDetails as $index => $education)

Education {{ $index + 1 }}

{{ $education->qualification->name ?? 'Not provided' }}
{{ $education->board ?? 'Not provided' }}
{{ $education->institution ?? 'Not provided' }}
{{ $education->year ?? 'Not provided' }}
{{ $education->grade ?? 'Not provided' }}
@endforeach @else

No educational details provided

@endif

Course Selection

@if($courseSelection && $courseSelection->trainingProgram) {{ $courseSelection->trainingProgram->title }} (Duration: {{ $courseSelection->trainingProgram->total_hours }} hours, Type: {{ $courseSelection->trainingProgram->course_type_desc }}) @else Not selected @endif

Training Center Selection

@if($trainingCenterPreference && $trainingCenterPreference->trainingCentre) {{ $trainingCenterPreference->trainingCentre->basicInformation->centre_name ?? 'Not available' }}
{{ $trainingCenterPreference->trainingCentre->address->address ?? 'Address not available' }} @else Not selected @endif

Uploaded Documents

@if($document && $document->photo_full_path) View Photo @else Not uploaded @endif
@if($document && $document->address_proof_full_path) View Document @else Not uploaded @endif
@if($document && $document->experience_certificate_full_path) View Document @else Not uploaded @endif
@if($document && $document->medical_certificate_full_path) View Document @else Not uploaded @endif
@endsection @section('pages-scripts') @endsection