@extends('admin.layout.app') @section('title', __('admin.add_student')) @section('body')

{{ __('admin.add_new_student') }}

{{ __('admin.create_a_student_profile_with_personal_and_academic_det') }}

{{ __('admin.back_to_reports') }}
@if(request('from_application'))
Online application imported. Review the data, set password and academic placement, then save the student.
@endif @if ($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
@csrf {{-- Personal Information --}}
{{ __('admin.personal_information') }}
{{-- Contact Information --}}
{{ __('admin.contact_information') }}
{{-- Academic Placement (New) --}}
{{ __('admin.academic_placement') }}
{{ __('admin.auto_enroll_description') }}
{{-- Education & Job --}}
{{ __('admin.education_job') }}
{{-- Account Security --}}
{{ __('admin.account_security') }}
{{ __('admin.cancel') }}
@endsection