@extends("client.layouts.app") @section("title", __("client.funds.title")) @section("content")

{{ __('client.nav.add_funds') }}

{{ __('client.funds.subtitle') }}

@php $credit = auth()->user()->credit ?? 0; @endphp
{{ __('client.funds.current_credit') }}
${{ number_format($credit, 2) }}
{{ __('client.funds.available_credit_desc') }}
{{ __('client.funds.select_amount') }}
@if($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
@csrf
@foreach([10, 25, 50, 100, 250, 500] as $preset) @endforeach
$
{{ __('client.funds.amount_range') }}
@section("scripts") @endsection @endsection