@extends('layouts.app') @section('title', 'Payment Methods - BlueSmokeAI') @section('header')

{{ __('Payment Methods') }}

@endsection @section('content')
@if (session('success')) @endif @if ($errors->any()) @endif

Your Payment Methods

@forelse($paymentMethods as $method) @empty @endforelse
Card Expiration Status Actions
@if($method['brand'] === 'visa') @elseif($method['brand'] === 'mastercard') @elseif($method['brand'] === 'amex') @else @endif
{{ ucfirst($method['brand']) }} ending in {{ $method['last4'] }}
{{ $method['exp_month'] }}/{{ $method['exp_year'] }} @if($method['is_default']) Default @else Active @endif @if(!$method['is_default'])
@csrf
@endif
@csrf @method('DELETE')
No payment methods found. Add your first payment method below.

Add New Payment Method

@csrf
@push('scripts')