@extends('layouts.app') @section('title', isset($plan) ? 'Edit Plan' : 'Create Plan') @section('content')

{{ isset($plan) ? 'Edit Plan' : 'Create New Plan' }}

@csrf @if(isset($plan)) @method('PUT') @endif {{-- Name --}}
{{-- Price --}}
{{-- Listing Limit --}}
{{-- Featured Limit --}}
{{-- Description --}}
{{-- Checkboxes --}}
{{-- Alpine Component --}} @endsection