@extends('admin.layout.app') @section('title', __('Application Details')) @section('body')
@if(session('success')) @endif @if(session('warning')) @endif

{{ __('Application Details') }}

{{ __('front.id') }} #{{ $application->id }} @if($application->register_no) | {{ __('Reg. No.') }}: {{ $application->register_no }} @endif

{{ __('Back') }} @if($application->status) {{ ucfirst($application->status) }} @endif
{{ __('Applicant Information') }}
{{ __('Date') }}: {{ $application->created_at->format('Y-m-d h:i A') }}
@if($application->student_photo)
Student Photo
Student Photo
@endif
{{ __('Personal Information') }}
{{ __('Name') }} {{ $application->name ?? '—' }}
{{ __('Father\'s Name') }} {{ $application->father_name ?? '—' }}
{{ __('Date of Birth') }} {{ $application->dob ? $application->dob->format('Y-m-d') : '—' }}
{{ __('Gender') }} {{ $application->gender ?? '—' }}
{{ __('Contact Information') }}
{{ __('Email') }} @if($application->email) {{ $application->email }} @else — @endif
{{ __('Phone') }} @if($application->phone) {{ $application->phone }} @else — @endif
{{ __('Country') }} {{ $application->country ?? '—' }}
@if($application->address)
{{ __('Address') }}
{{ $application->address }}
@endif
{{ __('Education & Job') }}
{{ __('Highest Education') }} {{ $application->last_education ?? $application->education_level ?? '—' }}
{{ __('Current Job') }} {{ $application->current_job ?? '—' }}
Academic Selection {{ $application->university?->name ?? '—' }}
Faculty: {{ $application->faculty?->name ?? '—' }}
Department: {{ $application->department?->name ?? '—' }}
Program: {{ $application->program?->name ?? '—' }}
Course: {{ $application->course?->title ?? $application->desired_course ?? '—' }}
@if($application->tazkira_no)
{{ __('ID Card No.') }} {{ $application->tazkira_no }}
@endif
{{ __('Application Details') }}
@if($application->message)
{{ __('Message') }}

{{ $application->message }}

@endif
{{ __('Agreement') }} {{ $application->agreement ? __('Accepted') : __('Not Accepted') }} @if($application->signature_name)
{{ __('Signature') }}: {{ $application->signature_name }} @endif @if($application->signed_date)
{{ __('Signed Date') }}: {{ $application->signed_date }} @endif
{{ __('IP Address') }}: {{ $application->ip ?? '—' }}
{{ __('Browser') }}: {{ Str::limit($application->user_agent ?? '—', 30) }}
{{ __('Attachments / Tazkira Copy') }}
@include('online-form._attachments', ['model' => $application])
{{ __('Last Updated') }}: {{ $application->updated_at->diffForHumans() }}
Create Student
@csrf @method('PATCH')
@csrf @method('PATCH')
@csrf @method('DELETE')
@endsection