@extends('layouts.app') @section('title', 'Add New Student') @section('page-title', 'Add New Student') @section('content')
{{-- Back Button --}} Back to Students @if(session('error'))
{{ session('error') }}
@endif
@csrf {{-- Account Information --}}

Account Information

@error('name')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror
{{-- Academic Details --}}

Academic Details

@error('class_id')

{{ $message }}

@enderror
{{-- Personal Details --}}

Personal Details

{{-- Parent / Guardian --}}

Parent / Guardian

Parent must have an existing account. Create a parent account first if needed.

{{-- Submit --}}
Cancel
@endsection