@extends('layouts.app') @section('title', 'Create Academic Year') @section('page-title', 'Create Academic Year') @section('content') {{-- @section('page-description') --}} Create a new academic year for attendance and academic records. {{-- @endsection --}} {{-- @section('page-actions') --}} Back {{-- @endsection --}}
@csrf
{{-- Header --}}

Academic Year Information

Enter the academic year period and its current status.

{{-- Form --}}
{{-- Name --}}
@error('name')

{{ $message }}

@enderror
{{-- Start Date --}}
@error('start_date')

{{ $message }}

@enderror
{{-- End Date --}}
@error('end_date')

{{ $message }}

@enderror
{{-- Current Academic Year --}}

Mark this as the currently running academic year.

@error('is_current')

{{ $message }}

@enderror
{{-- Status --}}

Inactive academic years will not be available for new records.

@error('is_active')

{{ $message }}

@enderror
{{-- Actions --}}
Cancel
@endsection