관리-도구
편집 파일: ec60486e2a7adb8d84500e66e2a3cc1e.php
<!-- Start Course Chapter Modal --> <div id="addCourseChapter" tabindex="-1" class="hidden fixed inset-0 z-modal flex-center w-full md:inset-0 h-[calc(100%-1rem)] max-h-full"> <div class="p-4 w-full max-w-lg max-h-full"> <div class="relative bg-white rounded-lg shadow"> <button type="button" data-modal-hide="addCourseChapter" aria-label="Close course chapter modal" class="absolute top-3 end-2.5 hover:bg-gray-200 rounded-lg size-8 flex-center"> <i class="ri-close-line text-gray-500 text-xl leading-none"></i> </button> <div class="p-4 md:p-5"> <div class="pb-4 border-b border-gray-200"> <h6 class="leading-none text-lg font-semibold text-heading" id="model-header"> <?php echo e(translate('Add New Chapter')); ?> </h6> </div> <form action="<?php echo e($action ?? '#'); ?>" class="flex flex-col gap-4 mt-6 form"> <input type="hidden" name="course_id" value="<?php echo e($course->id ?? null); ?>"> <input type="hidden" name="id" id="chapterId"> <?php echo csrf_field(); ?> <div> <label for="chapterTitle" class="form-label"><?php echo e(translate('Title')); ?> <span class="text-danger">*</span></label> <input type="text" id="chapterTitle" class="form-input" name="title" autocomplete="off" placeholder="<?php echo e(translate('Enter Chapter Name')); ?>" /> <span class="text-danger error-text title_err"></span> </div> <div class="flex justify-end"> <button type="submit" class="btn b-solid btn-primary-solid cursor-pointer shadow-sm" aria-label="Submit course chapter" id="modal-btn"><?php echo e(translate('Submit')); ?></button> </div> </form> </div> </div> </div> </div> <!-- End Course Chapter Modal --> <?php /**PATH D:\www\edulab\Modules\LMS\resources\views\components\course\curriculum\chapter-form.blade.php ENDPATH**/ ?>