@extends('layouts.app') @section('title', 'Students') @section('breadcrumb') @endsection @section('content') @php // Get current active class detail $currentClass = $student->classDetails->first(); @endphp

Student Management

Edit Student
{{-- GLOBAL ERRORS --}} @if ($errors->any())
Please fix the following errors:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT') {{-- ================= PERSONAL INFORMATION ================= --}}
Personal Information
@error('name')
{{ $message }}
@enderror
{{-- ================= ADDRESS ================= --}}
Address
{{-- ================= FLAGS ================= --}}
Additional Information
belongs_to_minority_group) ? 'checked' : '' }}>
is_disability_ph) ? 'checked' : '' }}>
is_transport_required) ? 'checked' : '' }}>
{{-- ================= CLASS ASSIGNMENT ================= --}}
Class Assignment
{{-- ================= PARENT / GUARDIAN ================= --}}
Parent / Guardian Details
{{-- ================= DOCUMENTS ================= --}}
Documents
Upload recent passport size photo
Birth certificate / Aadhaar / PDF
Cancel
@endsection @section('script') @endsection