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

File "8958caea69d9c297c2102887e2d910f8.php"

Full Path: /home2/yvrgircc/public_html/ariseskilltech.com/storage/framework/views/8958caea69d9c297c2102887e2d910f8.php
File size: 2.23 KB
MIME-type: text/plain
Charset: utf-8

<form class="required-form" action="<?php echo e(route('admin.live.class.store', ['course_id' => $course_id])); ?>" method="post">
    <?php echo csrf_field(); ?>
    <input name="provider" type="hidden" value="zoom">

    <div class="fpb-7 mb-3">
        <label class="form-label ol-form-label" for="class_topic"><?php echo e(get_phrase('Class Topic')); ?><span class="required">*</span></label>
        <input type="text" name = "class_topic" id = "class_topic" class="form-control ol-form-control" required>
    </div>

    <div class="fpb-7 mb-3">
        <label class="form-label ol-form-label" for="live_class_instructor_id"><?php echo e(get_phrase('Instructor')); ?><span class="required">*</span></label>
        <select class="ol-select2" name="user_id" id="live_class_instructor_id">
            <?php $__currentLoopData = App\Models\Course::where('id', $course_id)->first()->instructors(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $instructor): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                <option value="<?php echo e($instructor->id); ?>"><?php echo e($instructor->name); ?></option>
            <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
        </select>
    </div>

    <div class="fpb-7 mb-3">
        <label class="form-label ol-form-label" for="class_date_and_time"><?php echo e(get_phrase('Class date and time')); ?><span class="required">*</span></label>
        <input type="datetime-local" class="form-control ol-form-control" name="class_date_and_time" id="class_date_and_time" required>
    </div>

    <div class="fpb-7 mb-3">
        <label class="form-label ol-form-label" for="note_for_student"><?php echo e(get_phrase('Note for your student')); ?></label>
        <textarea class="form-control ol-form-control" name="note" id="note_for_student" rows="4"></textarea>
    </div>

    <div class="fpb-7 mb-3">
        <button type="submit" class="ol-btn-primary"><?php echo e(get_phrase('Create')); ?></button>
    </div>
</form>

<?php echo $__env->make('admin.init', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php /**PATH C:\xampp\htdocs\Arise\resources\views/admin/course/create_live_class.blade.php ENDPATH**/ ?>