@extends('layouts.app') @section('title', 'Edit — ' . ($paymentMethod->label ?? 'Payment Method')) @push('styles') @endpush @section('content')
@php $typeIcon = match($paymentMethod->type) { 'card' => 'fa-credit-card', 'crypto_wallet' => 'fa-wallet', default => 'fa-university', }; $typeLabel = match($paymentMethod->type) { 'card' => 'Card', 'crypto_wallet' => 'Crypto Wallet', default => 'Bank Account', }; $details = $paymentMethod->details; if (is_string($details)) $details = json_decode($details, true); $details = $details ?? []; @endphp