@php $d = $lead ? ($lead->turbo_app_data ?? []) : []; $v = fn($key, $fallback = false) => old("turbo_app_data[$key]", $d[$key] ?? $fallback); @endphp {{-- ══ Additional Card Types ══ --}}
Additional Card Types

Please make your selection (optional)

@php $cardTypeOptions = [ 'accepts_amex' => 'Amex', 'accepts_pin_debit' => 'PIN Debit', 'accepts_ebt' => 'EBT', 'accepts_debit_ebt_cashback'=> 'Debit/EBT Cashback', ]; @endphp @foreach($cardTypeOptions as $field => $label)
@endforeach
Debit/EBT Cashback requires PIN Debit to be selected first.
{{-- ══ Product Selection ══ --}}
Product Selection

Minimum one POS is required to transmit an application.

{{-- Selected products list --}}
@php $products = $v('products', []); @endphp @if(!empty($products)) @foreach($products as $idx => $product)
{{ $product['type'] ?? '' }}
@endforeach @else
No products selected. Click a product button above to add one.
@endif
@push('page_script') @endpush