@extends('layouts.app') @section('title','Statement') @push('styles') {{-- Google Fonts (Optional) --}} @endpush @section('content')
{{-- animated blobs (same style as add-money card page) --}}
{{-- top nav like add-money card --}}
Statement
{{-- main card --}}
{{-- header row like card info --}}
{{ $user->name }}
{{ $user->phone ?? 'N/A' }}
{{-- form --}}
@csrf @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- from date --}}
{{-- to date --}}
{{-- password --}}
{{-- submit --}}
@endsection