@extends('admin.layout') @section('title', 'تعديل الباقة') @section('header', 'تعديل باقة: ' . $plan->name) @section('content')
@csrf @method('PUT')
{{-- Main Setup --}}
{{-- Basic Information Card --}}

تعديل معلومات الباقة

@error('name') {{ $message }} @enderror
@error('slug') {{ $message }} @enderror
$
@error('price') {{ $message }} @enderror
@error('duration_months') {{ $message }} @enderror
{{-- Features Selection Card --}}

الميزات النشطة

@php $currentFeatures = is_array($plan->features) ? $plan->features : []; @endphp @foreach($availableFeatures as $slug => $label) @endforeach
{{-- Sidebar Layout / Limits --}}
{{-- Limits Card --}}

حدود الاستخدام

{{-- Action Buttons --}}
إلغاء والعودة
@endsection