@extends('layouts.mobile') @section('title', 'Terminate Card') @section('content')

Terminate Card

Permanently close your virtual card

@if($errors->any())
Please fix the following errors:
@endif

Important Warning

Terminating your virtual card is a permanent action that cannot be undone. Once terminated, the card will be completely deactivated and you will not be able to use it for any transactions.

{{ $displayCard->card_name ?? 'Virtual Card' }}

{{ $displayCard->card_type }} Card

To be terminated

Currency

{{ $displayCard->currency }}

{{ $displayCard->card_number }}

Current Balance

{{ $displayCard->currency === 'USD' ? '$' : '₦' }}{{ number_format($displayCard->balance, 2) }}

Status

{{ $displayCard->status }}

TERMINATING

What happens when you terminate this card?

  • Your card will be permanently deactivated
  • Any remaining balance will be refunded to your main wallet
  • All card details will be securely destroyed
  • You will not be able to recover this card
  • Any subscriptions using this card will fail
@if($displayCard->balance > 0)

Balance Refund

Your remaining balance of {{ $displayCard->currency === 'USD' ? '$' : '₦' }}{{ number_format($displayCard->balance, 2) }} will be automatically refunded to your main wallet within 24 hours of termination.

@else

No Balance to Refund

Your card has no remaining balance, so no refund will be processed.

@endif

Active Subscriptions

If you have active subscriptions using this card, they will fail after termination. Please update your payment methods for:

  • • Netflix, Spotify, or other streaming services
  • • Software subscriptions and SaaS platforms
  • • Online shopping auto-payments
  • • Any recurring bill payments
@csrf

Please confirm the following:

Cancel
@endsection