@extends('layouts.app') @section('content')
@include('layouts.left-menu')

Add Student

@include('session-messages') {{-- Validation Errors --}} @if ($errors->any()) @endif
@csrf {{-- Student Information Card --}}
Student Information
{{-- Parents' Information Card --}}
Parents' Information
{{-- Academic Information Card --}}
Academic Information
@isset($school_classes) @if(count($school_classes) == 0) Please create classes in the Academic section first. @endif @endisset
Optional field - leave blank if not applicable
{{-- Payment Settings Section --}}
💰 Payment Settings
@if(auth()->user()->role == 'admin') @endif
One-time fee for enrollment
Amount to pay each month
Total Amount to be Paid:
{{number_format($defaultAdmissionFee, 2)}} PKR
{{-- Submit Button --}}
Ready to Add Student?
Please review all information before submitting
@include('layouts.footer')
@include('components.photos.photo-input') @endsection