@extends('layouts.master') @section('page_title', 'Create Accounting Period') @section('content')

Create New Accounting Period

@csrf
@error('name')
{{ $message }}
@enderror
@error('start_date')
{{ $message }}
@enderror
@error('end_date')
{{ $message }}
@enderror
@error('type')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
Only one period can be current at a time
Note:
  • The end date must be after the start date
  • Periods should not overlap with existing active periods
  • Setting as current period will deactivate other current periods
  • Financial transactions can only be posted to active periods
Cancel
@endsection