@include('admin.crud.form', [ 'action' => route('admin.course-materials.update', [$course->id, $edit_data->id]), 'method' => 'PUT', 'formId' => 'edit-course-material-form', 'submitText' => 'Update Course Material', 'class' => 'ajax-crud-form', 'redirect' => route('admin.course-materials.index', $course->id), 'fields' => [ [ 'type' => 'text', 'name' => 'title', 'id' => 'title', 'label' => 'Material Title', 'placeholder' => 'Enter Material Title', 'required' => true, 'value' => $edit_data->title, 'col' => 12 ], [ 'type' => 'textarea', 'name' => 'description', 'id' => 'description', 'label' => 'Description', 'placeholder' => 'Enter Material Description', 'value' => $edit_data->description, 'col' => 12 ], [ 'type' => 'select', 'name' => 'type', 'id' => 'type', 'label' => 'Material Type', 'required' => true, 'options' => [ 'video' => 'Video', 'document' => 'Document', 'audio' => 'Audio', 'text' => 'Text', 'scorm' => 'SCORM', 'live_class' => 'Live Class', 'quiz' => 'Quiz', 'exam' => 'Exam', 'assignment' => 'Assignment', 'other' => 'Other' ], 'value' => $edit_data->type, 'col' => 6 ], [ 'type' => 'select', 'name' => 'access_type', 'id' => 'access_type', 'label' => 'Access Type', 'required' => true, 'options' => [ 'free' => 'Free', 'paid' => 'Paid', 'restricted' => 'Restricted' ], 'value' => $edit_data->access_type, 'col' => 6 ], [ 'type' => 'select2', 'name' => 'course_unit_id', 'id' => 'course_unit_id', 'label' => 'Course Unit', 'options' => ['' => 'Select Unit (Optional)'] + $unitOptions->pluck('indented_title', 'id')->toArray(), 'value' => $edit_data->course_unit_id, 'col' => 6 ], [ 'type' => 'select', 'name' => 'status', 'id' => 'status', 'label' => 'Status', 'required' => true, 'options' => [ 'draft' => 'Draft', 'published' => 'Published' ], 'value' => $edit_data->status, 'col' => 6 ], [ 'type' => 'number', 'name' => 'sort_order', 'id' => 'sort_order', 'label' => 'Sort Order', 'placeholder' => 'Enter sort order', 'min' => '0', 'value' => $edit_data->sort_order, 'col' => 6 ], [ 'type' => 'seperator', 'col' => 12 ], [ 'type' => 'image', 'name' => 'thumbnail', 'label' => 'Thumbnail', 'presetKey' => 'course_materials_thumbnail', 'value' => $edit_data->thumbnail, 'col' => 12 ] ] ])