@extends('expenses.layout') @section('expenses.content')
@method('PUT') @csrf
New
@if($errors->has('expense_item_id'))
{{$errors->first('expense_item_id')}}
@endif
New
@if($errors->has('payment_method_id'))
{{$errors->first('payment_method_id')}}
@endif
@if($errors->has('expense_date'))
{{$errors->first('expense_date')}}
@endif
@if($errors->has('amount'))
{{$errors->first('amount')}}
@endif
@endsection