@extends('adminlte::page') @section('title', 'Record Pocket Money Transaction') @section('content_header')

Record Pocket Money Transaction

@stop @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Back
@stop @section('js') @stop