@extends('user.layouts.master') @push('css') @endpush @section('breadcrumb') @include('user.components.breadcrumb',['breadcrumbs' => [ [ 'name' => __("Dashboard"), 'url' => setRoute("user.dashboard"), ] ], 'active' => __(@$page_title)]) @endsection @section('content')

{{ __(@$page_title) }}

!
{{ __('Transaction Preview') }}
{{ __('Subtotal') }}:
{{ get_amount($trade->rate, $trade->rateCurrency->code, get_wallet_precision($trade->rateCurrency)) }}
{{ __('fees And Charges') }}:
{{ get_amount($total_charge, $trade->rateCurrency->code, get_wallet_precision($trade->rateCurrency)) }}
{{ __('You Will Pay') }}:
{{ get_amount($total_charge + $trade->rate, $trade->rateCurrency->code, get_wallet_precision($trade->rateCurrency)) }}
{{ __('Seller will Pay') }}:
{{ get_amount($trade->amount, $trade->saleCurrency->code,get_wallet_precision($trade->saleCurrency)) }}
@csrf
{{ __('Available Balance') }}: {{ get_amount($userWallet->balance,$userWallet->currency->code, get_wallet_precision($userWallet->currency)) }}
@if($basic_settings->user_pin_verification == true)
@include('user.components.modal.pin-check') @else
@endif
@endsection @push('script') @endpush