JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "13d0b3567c10bebfdda78b7f87abe744.php"

Full Path: /home/ambitio2/public_html/storage/framework/views/13d0b3567c10bebfdda78b7f87abe744.php
File size: 3.54 KB
MIME-type: text/x-php
Charset: utf-8

<?php
    $question = App\Models\Question::where('id', $id)->first();
?>
<style>
    .select2-selection.select2-selection--multiple {
        cursor: pointer !important;
    }
</style>

<form class="ajaxForm" action="<?php echo e(route('admin.course.question.update', $id)); ?>" method="post"><?php echo csrf_field(); ?>

    <input type="hidden" name="quiz_id" value="<?php echo e($question->quiz_id); ?>">
    <div class="row">
        <div class="col-sm-12">
            <div class="mb-3">
                <label class="form-label ol-form-label">
                    <?php echo e(get_phrase('Question Type')); ?>

                    <span class="text-danger ms-1">*</span>
                </label>
                <select class="form-control ol-form-control ol-select2" data-toggle="select2" name="type"
                    onchange="getOptionType(this)">
                    <option value=""><?php echo e(get_phrase('Select an option')); ?></option>
                    <option <?php if($question->type == 'mcq'): ?> selected <?php endif; ?> value="mcq">
                        <?php echo e(get_phrase('Multiple Choice')); ?></option>
                    <option <?php if($question->type == 'fill_blanks'): ?> selected <?php endif; ?> value="fill_blanks">
                        <?php echo e(get_phrase('Fill in the blanks')); ?></option>
                    <option <?php if($question->type == 'true_false'): ?> selected <?php endif; ?> value="true_false">
                        <?php echo e(get_phrase('True or False')); ?></option>
                </select>
            </div>
        </div>
    </div>


    <div class="fpb-7 mb-3">
        <label for="title" class="form-label ol-form-label">
            <?php echo e(get_phrase('Write question')); ?>

            <span class="text-danger ms-1">*</span>
        </label>
        <textarea name="title" rows="5" class="form-control ol-form-control text_editor"><?php echo $question->title; ?></textarea>
    </div>

    <div class="load-question-type"></div>

    <div class="d-flex gap-3">
        <a href="#" class="btn ol-btn-primary" id="questionBackBtn"
            onclick="ajaxModal('<?php echo e(route('modal', ['admin.questions.index', 'id' => $question->quiz_id])); ?>', '<?php echo e(get_phrase('Questions')); ?>', 'modal-lg')">
            <i class="fi-rr-angle-small-left"></i> <?php echo e(get_phrase('Back')); ?>

        </a>

        <div class="fpb7">
            <button type="submit" class="btn ol-btn-primary"><?php echo e(get_phrase('Update Question')); ?></button>
        </div>
    </div>
</form>

<?php echo $__env->make('admin.init', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<script>
    setupQuestion("<?php echo e($question->type); ?>");

    function getOptionType(elem) {
        let type = elem.value;
        setupQuestion(type);
    }

    function setupQuestion(type) {
        if (type) {
            $.ajax({
                type: "get",
                url: "<?php echo e(route('admin.load.question.type')); ?>",
                data: {
                    id: "<?php echo e($question->id); ?>",
                    type: type,
                },
                success: function(response) {
                    $('.load-question-type').empty().append(response)
                }
            });
        }
    }

    // after response this function will call
    function responseBack() {
        document.querySelector('#questionBackBtn').click();
    }
</script>
<?php /**PATH C:\Users\deart\Herd\academylmslaravel\resources\views/admin/questions/edit.blade.php ENDPATH**/ ?>