@extends('layouts.student_layout') @section('content')
{{--

Personal Information

Please provide your basic personal details

John

Smith

john.smith@email.com

+1 (555) 123-4567

1985-06-15

Age: 38 years

Male

Address Information

123 Main Street, Apartment 4B, Downtown District

California

Los Angeles

Los Angeles

90210

Emergency Contact

Jane Smith

+1 (555) 987-6543

Spouse

--}}

Educational Details

{{--

Add your educational qualifications (you can add multiple)

--}}
@if ($educationDetails->count() > 0) @foreach ($educationDetails as $details)
{{ $details->qualification->name ?? 'Not Specified' }}
Board/University:
{{ $details->board ?? 'Not Available' }}
Institution:
{{ $details->institution ?? 'Not Available' }}
Year of Passing:
{{ $details->year ?? 'Not Available' }}
Grade:
{{ $details->grade ?? 'Not Available' }}
Document:
@if ($details->file_path_url) View Certificate @else No document uploaded @endif
@endforeach @endif
{{-- --}} Go to Edit

Course Selected

@if ($courseSelection->count() > 0) {{-- @foreach ($courseSelection as $courseDetails) --}} {{-- {{ dd($courseDetails->course) }} --}}
{{-- @endforeach --}} @endif
Go to Edit

Training Center Selection

Select your preferred training centers

Go to Edit
@csrf
{{-- {{ dd($student) }} --}}

Document Upload

Upload required documents (optional for now)

@if ($document->count() > 0) {{-- {{ dd($document) }} --}}
@endif
Go to Edit
@endsection @section('pages-scripts') @endsection