@extends('backend.layouts.app') @section('title', @$data['title']) @section('content') {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$data['title']]) !!}
@csrf
@if ($errors->has('account'))
{{ $errors->first('account') }}
@endif
@if ($errors->has('category'))
{{ $errors->first('category') }}
@endif
@if ($errors->has('date'))
{{ $errors->first('date') }}
@endif
@if ($errors->has('amount'))
{{ $errors->first('amount') }}
@endif
@if ($errors->has('payment_method_id'))
{{ $errors->first('payment_method_id') }}
@endif
@if ($errors->has('ref'))
{{ $errors->first('ref') }}
@endif
@if ($errors->has('attachment'))
{{ $errors->first('attachment') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if (@$data['url'])
@endif
@endsection