@extends('dashboard.admin.layouts.app') @section('content')

{{ $title }}

@include('dashboard.admin.user.partials.account_options_and_status')
@csrf
{{-- User (read-only context) --}}
{{-- Balance Type --}}
@error('balance_type')
{{ $message }}
@enderror
Select which balance this amount should be credited to.
{{-- Current Balance (display only, updates based on selected type) --}}
{{ currency($user->currency) }}
{{-- New Balance --}}
{{ currency($user->currency) }} @error('amount')
{{ $message }}
@enderror
Enter the value the selected balance should be set to.

@endsection