@extends('layouts.dash2') @section('title', 'Apply for Virtual Card') @section('content')
@include('partials._mobile_header', [ 'title' => 'Apply for Card', 'showBackButton' => true, 'backUrl' => route('cards'), 'showNotifications' => true, 'showDarkMode' => true, 'financeUser' => Auth::user() ])
@if(session('error') || (session('message') && session('type') == 'error'))

{{ session('error') ?: session('message') }}

@endif @if(session('success') || (session('message') && session('type') == 'success'))

{{ session('success') ?: session('message') }}

@endif @if(session('message') && session('type') == 'danger')

{{ session('message') }}

@endif

Apply for a Virtual Card

Get instant access to a virtual card for online payments and subscriptions

@csrf

Card Details

Accepted worldwide, suitable for most online purchases

VISA

Global acceptance with enhanced security features

MASTERCARD

Premium benefits and exclusive rewards program

AMEX
@error('card_type')

{{ $message }}

@enderror

Different levels offer varied spending limits and features

@error('card_level')

Please select a valid card level

@enderror
@error('currency')

{{ $message }}

@enderror
{{ Auth::user()->s_curr }}
{{ Auth::user()->curr }}

Limits: {{ Auth::user()->s_curr }}{{ number_format($minLimit, 2) }} - {{ Auth::user()->s_curr }}{{ number_format($maxLimit, 2) }}

@error('daily_limit')

{{ $message }}

@enderror

Billing Information

@error('card_holder_name')

{{ $message }}

@enderror
@error('billing_address')

{{ $message }}

@enderror
@error('billing_city')

{{ $message }}

@enderror
@error('billing_zip')

{{ $message }}

@enderror

By checking this box, you agree to our virtual card terms, including fees, limits, and usage policies. You also consent to electronic communications regarding your card account.

Back to Cards

Secure

Bank-level security with real-time fraud monitoring and instant notifications.

Instant

Get your virtual card instantly after approval. Start using it for online purchases immediately.

Control

Set spending limits, freeze cards instantly, and monitor all transactions in real-time.

@endsection