@extends('layouts.admin') @section('title', isset($product) ? 'Edit Add-on Product' : 'New Add-on Product') @section('page-title', isset($product) ? 'Edit Add-on Product' : 'New Add-on Product') @section('content')
← Back

{{ isset($product) ? "Edit: {$product->name}" : 'Create Add-on Product' }}

@if($errors->any())
@endif
@csrf @if(isset($product)) @method('PUT') @endif {{-- Name --}}
{{-- Description --}}
{{-- Price & Currency --}}
{{-- Type --}}
{{-- Payment IDs --}}

From your Stripe dashboard → Products.

{{-- Active toggle --}}
is_active ?? true)) class="h-4 w-4 rounded border-slate-300 text-brand-600 focus:ring-brand-600">
{{-- Submit --}}
Cancel
@endsection