@include('admin.crud.form', [ 'action' => route('admin.courses.store'), 'formId' => 'add-course-form', 'submitText' => 'Save Course', 'class' => 'ajax-crud-form', 'redirect' => route('admin.courses.index'), 'fields' => [ [ 'type' => 'text', 'name' => 'title', 'id' => 'title', 'label' => 'Course Title', 'placeholder' => 'Enter Course Title', 'required' => true, 'col' => 12 ], [ 'type' => 'text', 'name' => 'slug', 'id' => 'slug', 'label' => 'Slug', 'placeholder' => 'Enter Course Slug (auto-generated if empty)', 'col' => 12 ], [ 'type' => 'textarea', 'name' => 'description', 'id' => 'description', 'label' => 'Description', 'placeholder' => 'Enter Course Description', 'col' => 12 ], [ 'type' => 'select2', 'name' => 'program_id', 'id' => 'program_id', 'label' => 'Program', 'options' => $programs, 'col' => 6, 'enabled' => has_feature('programs') ], [ 'type' => 'select2', 'name' => 'category_id', 'id' => 'category_id', 'label' => 'Category', 'options' => $categories, 'col' => 6, 'enabled' => has_feature('categories') ], [ 'type' => 'select', 'name' => 'type', 'id' => 'type', 'label' => 'Course Type', 'required' => true, 'options' => [ 'structured' => 'Structured (with lessons/units)', 'direct' => 'Direct (single content)' ], 'col' => 6 ], [ 'type' => 'select', 'name' => 'status', 'id' => 'status', 'label' => 'Status', 'required' => true, 'options' => [ 'draft' => 'Draft', 'published' => 'Published', 'archived' => 'Archived' ], 'col' => 4 ], [ 'type' => 'seperator', 'col' => 12 ], [ 'type' => 'image', 'name' => 'thumbnail', 'label' => 'Thumbnail', 'presetKey' => 'courses_thumbnail', 'subPreset' => 'original', 'col' => 8 ], [ 'type' => 'image', 'name' => 'banner_image', 'label' => 'Banner Image', 'presetKey' => 'courses_banner', 'col' => 8 ], [ 'type' => 'file', 'name' => 'banner_video', 'id' => 'banner_video', 'label' => 'Banner Video', 'accept' => 'video/*', 'col' => 8 ] ] ])