@extends('layouts.app') @section('title', 'Admission Confirmed') @section('content')

Admission Confirmed!

Welcome to St. Xavier's College, Burdwan. Your admission has been successfully completed. Please save your login credentials below — they will not be shown again.

{{ $application->form_number }}
{{-- Student details --}}
Name {{ $application->applicant_name }}
Course {{ $application->admission?->course ?? $application->course }} @if($application->admission?->subject) – {{ $application->admission->subject }} @endif
Category {{ $application->category }}
Admitted On {{ $application->admission?->admitted_at?->timezone('Asia/Kolkata')->format('d M Y, h:i A') ?? now()->format('d M Y') }}
Status Admitted
{{-- Login credentials (only shown right after admission) --}} {{-- @if ($studentEmail && $studentPassword)

Your Login Credentials — Save These Now

@if($studentCode) @endif
Student Code {{ $studentCode }}
Login Email {{ $studentEmail }}
Password {{ $studentPassword }}

Please change your password after your first login. These credentials will not be shown again.

@else
Your login credentials were sent to {{ $application->email }}. Please contact the college office if you have not received them.
@endif --}} {{-- What's next --}} {{--
Next Steps
--}}
Download Admission Letter
@endsection