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

Edit Accounting Period

@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('start_date')
{{ $message }}
@enderror
@error('end_date')
{{ $message }}
@enderror
@error('type')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
is_active) ? 'checked' : '' }}>
is_current) ? 'checked' : '' }}>
Only one period can be current at a time
@if($accountingPeriod->is_closed)
Warning: This accounting period has been closed. Some changes may not be allowed.
@endif
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
  • @if($accountingPeriod->journal_entries_count > 0)
  • This period has {{ $accountingPeriod->journal_entries_count }} journal entries
  • @endif
Cancel
@if(!$accountingPeriod->is_closed) @endif View Details
@endsection