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

Promote Student

@include('session-messages') @if($current_promotion)
Current Student Information

Student Name:

{{$student->first_name}} {{$student->last_name}}

Current Class:

{{$current_promotion->schoolClass->class_name ?? 'N/A'}}

Current Section:

{{$current_promotion->section->section_name ?? 'N/A'}}

Current Session:

{{$current_promotion->schoolSession->session_name ?? 'N/A'}}

@endif
@csrf
New Class Assignment
💰 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
Note: A new payment profile will be created for this promotion. The student's previous session payment history will be preserved.
Cancel
@include('layouts.footer')
@endsection