@extends('layouts.app') @section('title') Edit Payment @stop @section('breadcrumb') @stop @section('content')
{{csrf_field()}}
@if($errors->any())

Errors

    {!! implode('', $errors->all('
  • :message
  • ')) !!}
@endif

Payment Information


@if ($errors->has('account_id')) {{ $errors->first('account_id') }} @endif
@if ($errors->has('date')) {{ $errors->first('date') }} @endif
@if ($errors->has('payment_method')) {{ $errors->first('payment_method') }} @endif
@if ($errors->has('amount')) {{ $errors->first('amount') }} @endif
@if ($errors->has('notes')) {{ $errors->first('notes') }} @endif
@if ($errors->has('reference')) {{ $errors->first('reference') }} @endif
@if ($errors->has('approval_status')) {{ $errors->first('approval_status') }} @endif
@if ($errors->has('file')) {{ $errors->first('file') }} @endif
 
@stop