@extends('layouts.app') @section('title', 'Step 1 – Personal Information') @section('content') {{-- Stepper --}}
1
Personal Information
2
Payment
3
Document Upload
Instructions: Fill in all fields marked with * carefully. Use BLOCK LETTERS for your name, father's name and mother's name. Ensure details match your mark sheet exactly.
@csrf {{-- ── SECTION A: Course & Category ── --}}

Course & Category Details

{{-- Category --}}
@foreach (['General', 'SC', 'ST', 'OBC', 'Catholic'] as $cat) @endforeach
@error('category')
{{ $message }}
@enderror
{{-- Course --}}
@error('course')
{{ $message }}
@enderror
{{-- Subject --}}
@error('subject')
{{ $message }}
@enderror
{{-- ── SECTION B: Personal Details ── --}}

Personal Details

{{-- Gender --}}
@error('gender')
{{ $message }}
@enderror
{{-- Applicant Name --}}
@error('applicant_name')
{{ $message }}
@enderror
{{-- Father's Name --}}
@error('father_name')
{{ $message }}
@enderror
{{-- Mother's Name --}}
@error('mother_name')
{{ $message }}
@enderror
{{-- Date of Birth --}}
@error('date_of_birth')
{{ $message }}
@enderror
{{-- Contact No --}}
@error('contact_no')
{{ $message }}
@enderror
{{-- Email --}}
@error('email')
{{ $message }}
@enderror
{{-- Differently Abled --}}
@error('differently_abled')
{{ $message }}
@enderror
{{-- Nationality --}}
@error('nationality')
{{ $message }}
@enderror
{{-- Religion --}}
@error('religion')
{{ $message }}
@enderror
{{-- Address --}}
@error('address')
{{ $message }}
@enderror
{{-- Pincode --}}
@error('pincode')
{{ $message }}
@enderror
{{-- ── SECTION C: Academic Details ── --}}

Academic Details

{{-- Year of Passing --}}
@error('hs_passing_year')
{{ $message }}
@enderror
{{-- Board Name --}}
@error('board_name')
{{ $message }}
@enderror
{{-- Previous Institution --}}
@error('prev_institution')
{{ $message }}
@enderror
{{-- Previous Institution Address --}}
{{-- Reg No --}}
{{-- Unique ID / Roll No --}}
{{-- ── SECTION D: Subjects & Marks ── --}}

Subjects and Marks in H.S. / Equiv. Exam

Note:
  • W.B.C.H.S.E. students: Language subjects + Best of 3. Physical Education & Environmental Science may be considered if compulsory elective.
  • Other Boards: Best of 4 subjects. Physical Education & Environmental Science may be considered if compulsory elective.
  • Enter marks exactly as printed in your mark sheet.
@php $oldSubjects = old('subjects', [ ['name' => '', 'full_marks' => '', 'marks_obtained' => ''], ['name' => '', 'full_marks' => '', 'marks_obtained' => ''], ['name' => '', 'full_marks' => '', 'marks_obtained' => ''], ['name' => '', 'full_marks' => '', 'marks_obtained' => ''], ['name' => '', 'full_marks' => '', 'marks_obtained' => ''], ]); @endphp @foreach ($oldSubjects as $i => $sub) @endforeach
# Subject Full Marks Marks Obtained Remove
{{ $i + 1 }}
Aggregate
Percentage (%)
@error('subjects')
{{ $message }}
@enderror
{{-- ── Declaration ── --}}
{{-- ── Submit ── --}}
Resume Existing Application
@endsection @push('scripts') @endpush