@extends('admin.layout.app') @section('body')

Edit Expense

{{-- Validation Errors --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
{{-- Category --}}
{{-- Currency --}}
{{-- Title --}}
{{-- Amount --}}
{{-- Date --}}
{{-- Description --}}
Cancel
@endsection