{{-- resources/views/admin/settings/academicyear/create.blade.php --}} @extends('admin.layouts.mainlayout') @section('title', 'Create Academic Year') @section('content')

Create Academic Year

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf {{-- Basic Information --}}

Basic Information

Short identifier for the academic year

Display name for the academic year

{{-- Marking Periods --}}

Marking Periods

@foreach($markingPeriods as $index => $period)

{{ $period->name }}

@endforeach
{{-- Form Actions --}}
Cancel
@endsection