Student Application Form

Form No: {{ $application->form_number ?? '--' }}
Name: {{ $application->applicant_name ?? '--' }}
Father: {{ $application->father_name ?? '--' }}
Mother: {{ $application->mother_name ?? '--' }}
Gender: {{ $application->gender ?? '--' }}
DOB: {{ $application->date_of_birth ?? '--' }}
Course: {{ $application->course ?? '--' }}
Subject: {{ $application->subject ?? '--' }}
Category: {{ $application->category ?? '--' }}
Email: {{ $application->email ?? '--' }}
Phone: {{ $application->contact_no ?? '--' }}
Address: {{ $application->address ?? '--' }}
Pincode: {{ $application->pincode ?? '--' }}
Differently Abled: {{ $application->differently_abled ? 'Yes' : 'No' }}
Nationality : {{ $application->nationality ?? '--' }}
Religion : {{ $application->religion ?? '--' }}
Name of the Board / Council: {{ $application->board_name ?? '--' }}
Year of Passing H.S. / Equiv. Exam: {{ $application->hs_passing_year ?? '--' }}
Name of Previous Institution: {{ $application->prev_institution ?? '--' }}
Address of Previous Institution: {{ $application->prev_institution_address ?? '--' }}
H.S. / Equiv. Registration No.: {{ $application->hs_reg_no ?? '--' }}
Unique ID / Roll No: {{ $application->hs_unique_id_roll ?? '--' }}

Subjects & Marks

@foreach ($application->subjects_marks as $i => $sub) @endforeach
# Subject Full Marks Marks Obtained
{{ $i + 1 }} {{ $sub['name'] ?? '--' }} {{ $sub['full_marks'] ?? '--' }} {{ $sub['marks_obtained'] ?? '--' }}
Aggregate: {{ $application->aggregate_marks ?? '--' }}
Percentage (%): {{ $application->percentage ?? '--' }}%