@extends('layouts.app') {{-- Or your main app layout --}} @section('title', __('Deposit Funds with Authorize.Net')) @section('content')

{{ __('Deposit Funds') }}

{{ __('Amount to Deposit:') }} {{ setting('currency_symbol', '$') }}{{ number_format($amount, 2) }}

@if(session('error')) @endif {{-- Div for displaying Accept.js errors --}}
@csrf {{-- Accept.js will populate these --}} {{-- Card Information Fields for Accept.js --}}
{{-- Billing Address Fields (Recommended for AVS) --}}

Billing Address

@endsection