@extends('layouts.admin') @section('title', 'Edit User: ' . $user->name) @section('header_title', 'Edit User') @section('content')
Plan: {{ $currentSubscription->plan->name ?? 'N/A' }}
Status: {{ $currentSubscription->status }}
Ends At: {{ $currentSubscription->ends_at ? $currentSubscription->ends_at->toFormattedDateString() : 'N/A' }}
Gateway: {{ str_replace('_', ' ', $currentSubscription->payment_gateway) }}
This user does not currently have an active subscription.
@endifCurrent Credit Balance: {{ $user->credit_balance ?? 0 }} credits
Current Wallet Balance: ${{ number_format($user->wallet_balance ?? 0, 2) }}