@csrf

{{ __('messages.add_expense') }}

@if ($errors->has('expense_type'))
{{ $errors->first('expense_type') }}
@endif
@if ($errors->has('date'))
{{ $errors->first('date') }}
@endif
@if ($errors->has('account_id'))
{{ $errors->first('account_id') }}
@endif
@if ($errors->has('employee_id'))
{{ $errors->first('employee_id') }}
@endif
@if ($errors->has('vehicle_id'))
{{ $errors->first('vehicle_id') }}
@endif
@if ($errors->has('expense'))
{{ $errors->first('expense') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($errors->has('document'))
{{ $errors->first('document') }}
@endif