@extends('layouts.admin') @section('title', 'Edit Subscription Plan') @section('content')

Edit Subscription Plan

Update plan details, pricing, and features

Plan Information
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('name_ar')
{{ $message }}
@enderror
@error('price')
{{ $message }}
@enderror
@error('duration_days')
{{ $message }}
@enderror
@error('type')
{{ $message }}
@enderror
@if($plan->type === 'business')
Business Plan Limits
@endif
Features
analytics_access ? 'checked' : '' }}>
priority_support ? 'checked' : '' }}>
custom_branding ? 'checked' : '' }}>
api_access ? 'checked' : '' }}>
featured_listing ? 'checked' : '' }}>
is_popular ? 'checked' : '' }}>
is_active ? 'checked' : '' }}>
is_private ? 'checked' : '' }}>
Cancel
Plan Summary

Plan Type

{{ ucfirst($plan->type) }}

Tier

{{ $plan->tier ? ucfirst($plan->tier) : 'N/A' }}

Monthly Price

AED {{ number_format($plan->price, 2) }}

Status

@if($plan->is_active) Active @else Inactive @endif

Created

{{ $plan->created_at->format('M d, Y') }}

Actions
@endsection