@extends('admin.layout') @section('page-title', 'Deposit to Hold Account') @section('content')

Deposit to Hold Account

Payment Method: {{ $holdAccount->paymentMethod->name ?? 'N/A' }}

Back

Current Balance

${{ number_format($holdAccount->balance, 2) }}

@csrf
@error('amount')

{{ $message }}

@enderror

Enter the amount to deposit into this hold account

@error('description')

{{ $message }}

@enderror

Optional: Add a description for this deposit (e.g., "Reconciliation adjustment", "Initial balance entry")

Note: This deposit will be recorded as a credit transaction in the hold account transaction history. Use this for reconciliation purposes or to set an initial balance.

Cancel
@endsection