@extends('layouts.app') @section('content')

{{ __('reports.gl_manage.actions.edit_journal_entry') }}: {{ $entry->entry_no }}

@if($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
@csrf @method('PUT') @include('admin.gl.journal._form', ['entry' => $entry])
{{ __('reports.gl_manage.actions.cancel') }}
@endsection