{{-- Breadcrumbs
{{ __('t.dashboard') }} {{ __('t.assets') }} {{ __('t.swap') }}
--}}
{{-- Header --}}

{{ __('t.swap_crypto') }}

{{-- From Section --}}
{{ __('t.balance') }}: @if($from_is_account_balance) {{ Number::currency($from_balance, $settings->s_currency) }} @else {{ $from_balance }} {{ $from_currency->symbol }} @endif
{{-- Dropdown Menu --}}
{{-- Input Field --}} {{-- Mobile-friendly Percentage Selector --}}
@foreach([5, 15, 50, 100] as $percentage) @endforeach
{{-- Swap Button --}}
{{-- To Section --}}
{{ __('t.balance') }}: @if($to_is_account_balance) {{ Number::currency($to_balance, $settings->s_currency) }} @else {{ $to_balance }} {{ $to_currency->symbol }} @endif
{{-- Dropdown Menu --}}
{{-- Rate Info --}}
{{ __('t.exchange_rate') }} @if($from_amount && $to_amount) 1 {{ $from_is_account_balance ? $settings->s_currency : $from_currency->symbol }} ≈ {{ $to_is_account_balance ? Number::currency($to_amount/$from_amount, $settings->s_currency) : number_format($to_amount/$from_amount, 8) }} {{ $to_is_account_balance ? '' : $to_currency->symbol }} @else - @endif
{{ __('t.network_fee') }} {{ $settings->swap_fee }}%
{{-- Submit Button --}}