@php $p = $package ?? null; $currencies = $currencies ?? [ 'INR' => '₹ INR', 'USD' => '$ USD', 'EUR' => '€ EUR', 'GBP' => '£ GBP', 'AED' => 'AED', ]; $action = $p ? route('admin.credit-packages.update', $p->id) : route('admin.credit-packages.store'); @endphp
@csrf @if ($p) @method('PUT') @endif {{-- ── Section 1: Identity ── --}}
01 {{ __('Identity') }}
{{ __('Used in the checkout URL; leave blank to auto-generate.') }}
{{-- ── Section 2: Price & credits ── --}}
02 {{ __('Pricing') }}
{{ __('In whole currency units (100 = 100 of the unit picked at right).') }}
{{ __('Whole number of message credits this package buys.') }}
{{-- ── Section 3: Display & visibility ── --}}
03 {{ __('Display') }}
{{ __('Optional label shown above the price.') }}
{{ __('Lower numbers appear first on the wallet page.') }}
{{-- Footer actions span all 3 columns. --}}
{{ __('Cancel') }}