@extends('dashboard.user.layouts.master') @section('content')

{{ $title }}

@include('dashboard.user.layouts.components.breadcrumbs')
@include('dashboard.user.components.menu')
@if ($deposit == 'Card') {{-- MARK: CARD DEPOSIT --}}

Enter your card details to make a deposit. All fields marked with an asterisk (*) are required.

@csrf
@error('amount') {{ $message }} @enderror
@error('card_number') {{ $message }} @enderror
@error('cvv') {{ $message }} @enderror
@error('card_expiry_date') {{ $message }} @enderror
Cancel
{{-- MARK: END CARD DEPOSIT --}} @else {{-- MARK: BITCOIN DEPOSIT --}}

Send your Bitcoin payment to the address below or scan the QR code with your wallet. Enter the deposit amount and optionally upload proof of the transaction (e.g., transaction ID or screenshot). All fields marked with an asterisk (*) are required.

@csrf

@if ($admin->btc_qr_code) Bitcoin QR Code @else {{ $qrCode }} @endif
@error('amount') {{ $message }} @enderror
@error('proof') {{ $message }} @enderror
Cancel
{{-- MARK: END BITCOIN DEPOSIT --}} @endif
@endsection