@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 (['UR', 'SC', 'ST', 'OBC', 'EWS', 'PwD'] 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 Graduation --}}
@error('year_of_graduation')
{{ $message }}
@enderror
{{-- Name of the University --}}
@error('university_name')
{{ $message }}
@enderror
{{-- University Registration Number --}}
@error('university_reg_no')
{{ $message }}
@enderror
{{-- NAD / ABC ID --}}
@error('nad_abc_id')
{{ $message }}
@enderror
{{-- Previous Institution --}}
@error('prev_institution')
{{ $message }}
@enderror
{{-- Previous Institution Address --}}
{{-- Status of Degree --}}
{{-- Month & Year of Results Declaration --}}
{{-- Scholarship: Are you Enjoying any Scholarship/ Stipend --}}
{{-- Aadhaar Number --}}
{{-- Father’s / Guardian Profession --}}
{{-- Family Income (per annum): --}}
{{-- ── SECTION D: Subjects & Marks ── --}}

Graduation Details:

{{--
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' => ''], ['name' => '', 'full_marks' => '', 'marks_obtained' => ''], ]); @endphp @foreach ($oldSubjects as $i => $sub) @endforeach
# Semesters Full Marks Marks Obtained Remove
{{ $i + 1 }}
Aggregate
Percentage (%)
@error('subjects')
{{ $message }}
@enderror
{{-- ── Declaration ── --}}
{{-- ── Submit ── --}}
Resume Existing Application
@endsection @push('scripts') @endpush