@extends('layouts.super-admin', ['title' => 'Create Edit Plan - Booklio Super Admin', 'pageTitle' => $plan->exists ? 'Edit Plan' : 'Create Plan', 'active' => 'plans']) @section('content')
@csrf @if (($formMethod ?? 'POST') !== 'POST') @method($formMethod) @endif

Configure plan pricing, limits, enabled modules, and status. Recurring billing will be connected later.

Back to plans
@if (session('status'))
{{ session('status') }}
@endif
@foreach ([ 'invoice_module_enabled' => 'Invoice module enabled', 'whatsapp_reminder_enabled' => 'WhatsApp reminder enabled', 'email_reminder_enabled' => 'Email reminder enabled', 'reports_enabled' => 'Reports enabled', 'custom_branding_enabled' => 'Custom branding enabled', ] as $field => $label) @endforeach
Cancel {{ $submitLabel }}
@endsection