@extends('layouts.admin') @section('title', 'إضافة تصنيف | Help Numo') @section('page-title', 'إضافة تصنيف جديد') @section('admin_content')
@csrf @include('admin.categories.partials.form', [ 'category' => new \App\Models\Category(), 'submitLabel' => 'حفظ التصنيف', 'fixedParent' => $fixedParent ?? null, 'parents' => $parents ?? collect(), ])
@endsection