@extends('layouts.muladash') @section('title', $title) @section('content') @include('layouts.mulapart')

Send Money to {{ $contact->name }}

@csrf
{{-- Select Wallet --}}

Pay From

{{-- trigger --}}

{{ $userWalletsInUSD[0]['name'] }} ({{ $userWalletsInUSD[0]['symbol'] }})

{{-- dropdown --}}
{{-- hidden field --}} {{-- Amount --}}

Amount

@if($contact->type == 'bank') {{-- Bank Name --}}

Bank Name

{{ $contact->bank_name }}

{{-- Account Number --}}

Account Number

{{ $contact->bank_account_number }}

{{-- Receiver Currency --}}

Receiver Currency

{{ $contact->currency }} @if($rate > 0) (1 USD = {{ number_format($rate, 2) }} {{ $contact->currency }}) @endif

{{-- Amount Receiver Will Get (Dynamic via JS) --}}

They Will Receive

0.00 {{ $contact->currency }}

@else {{-- Crypto Wallet Address --}}

{{ $contact->type }}

{{ $contact->wallet_address }}

@endif {{-- Wallet Balance --}}

Wallet Balance

{{ $settings->currency }}{{ number_format($userWalletsInUSD[0]['balance_in_usd'], 2) }}

{{-- Submit --}}
@endsection @section('scripts') @endsection