@extends('layouts.app') @section('title') Create Expense @endsection @section('header-script') @endsection @section('content')

Add New Expense

@csrf
@if ($errors->has('date')) {{ $errors->first('date') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('note')) {{ $errors->first('note') }} @endif
@if ($errors->has('amount')) {{ $errors->first('amount') }} @endif
@endsection @section('footer-script') @endsection