@extends('layouts.dashboard') @section('title', 'Edit Subscription Plan') @section('styles') @endsection @section('content')

Edit Plan: {{ $plan->name }}

Update pricing, limits, and features for this SaaS subscription tier.

Back to Plans
@csrf @method('PUT')
Basic Information
Limits & Quotas (0 = Unlimited)
Job Posting Limits
Resume & Candidate Limits
Communication Limits
Support & Branding
Custom Features (Displayed on Pricing Page)
@if(is_array($plan->features) && count($plan->features) > 0) @foreach($plan->features as $feature)
@endforeach @else
@endif
Settings & Publishing
is_active ? 'checked' : '' }}>
is_popular ? 'checked' : '' }}>
can_see_contact ? 'checked' : '' }}>
Cancel
@endsection @section('scripts') @endsection