@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.account.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('date'))
{{ $errors->first('date') }}
@endif {{ trans('cruds.account.fields.date_helper') }}
@if($errors->has('invoice_no'))
{{ $errors->first('invoice_no') }}
@endif {{ trans('cruds.account.fields.invoice_no_helper') }}
@if($errors->has('account_name'))
{{ $errors->first('account_name') }}
@endif {{ trans('cruds.account.fields.account_name_helper') }}
@if($errors->has('amount'))
{{ $errors->first('amount') }}
@endif {{ trans('cruds.account.fields.amount_helper') }}
@if($errors->has('remarks'))
{{ $errors->first('remarks') }}
@endif {{ trans('cruds.account.fields.remarks_helper') }}
@endsection