@extends('layouts.master') @section('page_title', 'Edit Journal Entry') @section('content')

Edit Journal Entry

Back to List View Details
Edit Journal Entry - {{ $journalEntry->entry_number }}
{{ ucfirst($journalEntry->status) }}
@csrf @method('PUT')
@error('entry_date')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
Journal Entry Lines
@foreach($journalEntry->journalEntryLines as $index => $line) @endforeach
Account Description Debit Credit Actions
description) }}" placeholder="Line description"> debit_amount > 0 ? $line->debit_amount : '') }}" placeholder="0.00" min="0"> credit_amount > 0 ? $line->credit_amount : '') }}" placeholder="0.00" min="0">
Totals: 0.00 0.00 Checking...
Note: Each line must have either a debit OR credit amount (not both). Total debits must equal total credits for the entry to be balanced.
@if($errors->has('error'))
{{ $errors->first('error') }}
@endif
Cancel
@endsection @push('scripts') @endpush @push('styles') @endpush