@extends('admin.layouts.app') @section('title', 'Add New Student (Direct Admission)') @section('breadcrumb') @endsection @section('content')
@if ($errors->any())
Please fix the following errors:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
1. Personal Information
2. Academic Information
3. Family & Other Activities
4. Address Details
5. Upload Documents (Admission Form Requirements)
@php $docs = [ [ 'f' => 'student_signature', 'l' => "Student's Signature", 't' => '.jpeg,.jpg', 'r' => true, ], [ 'f' => 'applicant_photo', 'l' => "Applicant's Photograph", 't' => '.jpeg,.jpg', 'r' => true, ], [ 'f' => 'admit_card_x', 'l' => 'Admit Card - Class X', 't' => '.jpeg,.jpg,.pdf', 'r' => true, ], [ 'f' => 'hs_marksheet', 'l' => 'HS Marksheet', 't' => '.jpeg,.jpg,.pdf', 'r' => true, ], [ 'f' => 'application_fee_receipt', 'l' => 'Application Fee Receipt', 't' => '.jpeg,.jpg,.pdf', 'r' => false, ], [ 'f' => 'category_certificate', 'l' => 'Category Certificate (SC/ST/OBC/EWS)', 't' => '.jpeg,.jpg,.pdf', 'r' => false, ], ]; @endphp @foreach ($docs as $doc)
Accepted: {{ strtoupper(str_replace('.', '', $doc['t'])) }} | Max: 3MB
@endforeach
@endsection