@extends('layouts.app') @section('title') {{ __('create_withdraw_usdt') }} @endsection @section('withdraw') active @endsection @section('section.header')

{{ __('withdraw_usdt') }}

@endsection @section('section.content')
Loading...
{{ __('creating_withdrawal_please_wait') }}

{{ __('create_withdraw_usdt') }}

@if (Session::has('success'))
{{ Session::get('success') }}
@endif @if (Session::has('error'))
{{ Session::get('error') }}
@endif

{{ __('withdrawal_info') }}

{{ __('please_check_withdrawal_info') }}

@error('chain_type') * {{ $message }} @enderror {{ __('wallet_chain_match_warning') }}
@error('wallet_address') * {{ $message }} @enderror
@error('amount_vnd') * {{ $message }} @enderror {{ __('usdt_conversion_hint') }}
@if (auth()->user()->is_2fa_enabled)
@error('one_time_password') * {{ $message }} @enderror
@endif

{{ __('important_note') }}:

    @php $usdToVND = (int) config('config_app.usd_to_vnd'); $minimumAmount = (int) config('config_app.minimum_withdraw'); $discount = $partner->discount_withdraw['USDT'] ?? 0; $maxAmountVND = (int) $partner->balance - ($minimumAmount * $discount) / 100; @endphp
  • {{ __('usdt_supported_networks') }}: TRC20, ERC20, BEP20.
  • {{ __('warning') }}: {{ __('usdt_warning_wrong_network') }}
  • {{ __('usdt_input_in_vnd') }}
  • @if ($usdToVND > 0)
  • {{ __('exchange_rate_reference') }}: 1 USD ≈ {{ number_format($usdToVND) }} VND.
  • @endif
  • {{ __('balance_must_exceed_amount_fee') }}
  • {{ __('please_fill_complete_accurate') }}
@endsection @section('scripts') @endsection @section('styles') @endsection