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

Partner Registration Preview

Review your submitted information for becoming our caregiver training partner.

Basic Information

Centre and contact details

{{ $basicInformation->centre_name ?? 'Not provided' }}
{{ $basicInformation->director_name ?? 'Not provided' }}
{{ $basicInformation->official_email ?? 'Not provided' }}
{{ $basicInformation->primary_phone ?? 'Not provided' }}
{{ $basicInformation->alternate_phone ?? 'Not provided' }}
@if($basicInformation->website ?? '') {{ $basicInformation->website }} @else Not provided @endif

Address Details

Location information

{{ $address->address ?? 'Not provided' }}
@if($address && $address->state) @foreach ($states as $state) @if($state->state_code == $address->state) {{ $state->state_name_en }} @break @endif @endforeach @else Not provided @endif
{{ $address->district ?? 'Not provided' }}
{{ $address->city ?? 'Not provided' }}
{{ $address->pincode ?? 'Not provided' }}
{{ $address->landmark ?? 'Not provided' }}

Organization Info

Registration and staff details

@if($organizationInfo && $organizationInfo->organization_type_id) @foreach ($organizationTypes as $type) @if($type->id == $organizationInfo->organization_type_id) {{ $type->name }} @break @endif @endforeach @else Not provided @endif
{{ $organizationInfo->year_established ?? 'Not provided' }}
{{ $organizationInfo->registration_number ?? 'Not provided' }}
{{ $organizationInfo->affiliations ?? 'Not provided' }}
{{ $organizationInfo->total_staff ?? 'Not provided' }}
{{ $organizationInfo->qualified_trainers ?? 'Not provided' }}

Infrastructure

Facilities and equipment

{{ $infrastructure->total_area ?? 'Not provided' }}
{{ $infrastructure->classrooms ?? 'Not provided' }}
{{ $infrastructure->classroom_size ?? 'Not provided' }}
{{ $infrastructure->number_of_laboratories ?? 'Not provided' }}
{{ $infrastructure->laboratory_size ?? 'Not provided' }}
@if(!empty($infrastructureFacilities) && count($infrastructureFacilities) > 0) @php $facilityNames = []; $infrastructureFacilities = $infrastructureFacilities->toArray(); $infrastructureFacilitiesIds = array_column($infrastructureFacilities, 'facility_id'); @endphp @foreach ($facilities as $facility) @if(in_array($facility->id, $infrastructureFacilitiesIds)) @php $facilityNames[] = $facility->name; @endphp @endif @endforeach {{ implode(', ', $facilityNames) }} @else No facilities selected @endif

Programs

Training programs offered

@if(!empty($trainingCentrePrograms) && count($trainingCentrePrograms) > 0) @php $trainingCentrePrograms = $trainingCentrePrograms->toArray(); $trainingCentreProgramsIds = array_column($trainingCentrePrograms, 'training_program_id'); @endphp
@foreach ($trainingPrograms as $trainingProgram) @if(in_array($trainingProgram->id, $trainingCentreProgramsIds))
{{ $trainingProgram->title }}
{{ $trainingProgram->total_hours }} Hours {{ $trainingProgram->course_type }}
@endif @endforeach
@else No programs selected @endif

Declaration & Documents

Final submission and verification

Document Upload

@if($document && $document->reg_certificate_full_path) View File @else Not uploaded @endif
@if($document && $document->noc_full_path) View File @else Not uploaded @endif
@if($document && count($document->photos_full_paths)) @foreach($document->photos_full_paths as $photo) View Photo @endforeach @else Not uploaded @endif
@if($document && count($document->staff_certs_full_paths)) @foreach($document->staff_certs_full_paths as $cert) View Certificate @endforeach @else Not uploaded @endif

Declaration Status

Terms and Conditions Agreement: {{ $trainingCentre && $trainingCentre->terms_agree == 1 ? 'Agreed' : 'Not Agreed' }}
Facility Inspection Agreement: {{ $trainingCentre && $trainingCentre->inspection_agree == 1 ? 'Agreed' : 'Not Agreed' }}
Information Accuracy Declaration: {{ $trainingCentre && $trainingCentre->accuracy_declaration == 1 ? 'Confirmed' : 'Not Confirmed' }}

Next Steps

Application review
(5-7 business days)
Document verification
Facility inspection
(if required)
Final approval and registration
@endsection @section('pages-scripts') @endsection