JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour
<?php $__env->startPush('title', get_phrase('Create course')); ?> <?php $__env->startSection('content'); ?> <div class="row mb-5"> <div class="col-lg-12"> <div class="ol-card radius-8px"> <div class="ol-card-body my-3 py-4 px-20px"> <div class="d-flex align-items-center justify-content-between gap-3 flex-wrap flex-md-nowrap"> <h4 class="title fs-16px"> <i class="fi-rr-settings-sliders me-2"></i> <?php echo e(get_phrase('Add new Course')); ?> </h4> </div> </div> </div> <div class="ol-card p-3"> <div class="ol-card-body"> <form action="<?php echo e(route('admin.course.store')); ?>" method="post" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <input type="hidden" name="course_type" value="general" required> <input type="hidden" name="instructors[]" value="<?php echo e(auth()->user()->id); ?>" required> <div class="row"> <div class="col-md-6 pb-2"> <div class="eForm-layouts"> <div class="fpb-7 mb-3"> <label class="form-label ol-form-label" for="title"><?php echo e(get_phrase('Title')); ?><span class="text-danger ms-1">*</span></label> <input type="text" name = "title" class="form-control ol-form-control" placeholder="<?php echo e(get_phrase('Enter Course Title')); ?>" required> </div> <div class="fpb-7 mb-3"> <label class="form-label ol-form-label" for="short_description"><?php echo e(get_phrase('Short Description')); ?></label> <textarea name="short_description" placeholder="<?php echo e(get_phrase('Enter Short Description')); ?>" class="form-control ol-form-control" rows="5"></textarea> </div> <div class="fpb-7 mb-3"> <label class="form-label ol-form-label" for="description"><?php echo e(get_phrase('Description')); ?></label> <textarea name="description" placeholder="<?php echo e(get_phrase('Enter Description')); ?>" class="form-control ol-form-control text_editor"></textarea> </div> <div class="fpb-7 mb-2 "> <label for="course_status" class="col-sm-2 col-form-label"><?php echo e(get_phrase('Create as')); ?> <span class="text-danger ms-1">*</span></label> <div class="eRadios"> <div class="form-check"> <input type="radio" value="active" name="status" class="form-check-input eRadioSuccess" id="status_active" required checked> <label for="status_active" class="form-check-label"><?php echo e(get_phrase('Active')); ?></label> </div> <div class="form-check"> <input type="radio" value="private" name="status" class="form-check-input eRadioPrimary" id="status_private" required> <label for="status_private" class="form-check-label"><?php echo e(get_phrase('Private')); ?></label> </div> <div class="form-check"> <input type="radio" value="upcoming" name="status" class="form-check-input eRadioInfo" id="status_upcoming" required> <label for="status_upcoming" class="form-check-label"><?php echo e(get_phrase('Upcoming')); ?></label> </div> <div class="form-check"> <input type="radio" value="pending" name="status" class="form-check-input eRadioDanger" id="status_pending" required> <label for="status_pending" class="form-check-label"><?php echo e(get_phrase('Pending')); ?></label> </div> <div class="form-check"> <input type="radio" value="draft" name="status" class="form-check-input eRadioSecondary" id="status_draft" required> <label for="status_draft" class="form-check-label"><?php echo e(get_phrase('Draft')); ?></label> </div> <div class="form-check"> <input type="radio" value="inactive" name="status" class="form-check-input eRadioDark" id="status_inactive" required> <label for="status_inactive" class="form-check-label"><?php echo e(get_phrase('Inactive')); ?></label> </div> </div> </div> </div> </div> <div class="col-md-6"> <div class="eForm-layouts"> <div class="fpb-7 mb-3"> <label for="category_id" class="form-label ol-form-label"><?php echo e(get_phrase('Category')); ?><span class="text-danger ms-1">*</span></label> <select class="ol-select2" name="category_id" id="category_id" required> <option value=""><?php echo e(get_phrase('Select a category')); ?></option> <?php $__currentLoopData = App\Models\Category::where('parent_id', 0)->orderBy('title', 'desc')->get(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $category): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($category->id); ?>"> <?php echo e($category->title); ?></option> <?php $__currentLoopData = $category->childs; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $sub_category): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($sub_category->id); ?>"> -- <?php echo e($sub_category->title); ?> </option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> <div class="fpb-7 mb-3"> <label for="level" class="form-label ol-form-label"><?php echo e(get_phrase('Course level')); ?><span class="text-danger ms-1">*</span></label> <select class="ol-select2" name="level" id="level" required> <option value=""><?php echo e(get_phrase('Select your course level')); ?></option> <option value="beginner"><?php echo e(get_phrase('Beginner')); ?></option> <option value="intermediate"><?php echo e(get_phrase('Intermediate')); ?></option> <option value="advanced"><?php echo e(get_phrase('Advanced')); ?></option> </select> </div> <div class="fpb-7 mb-3"> <label for="language" class="form-label ol-form-label"><?php echo e(get_phrase('Made in')); ?> <span class="text-danger ms-1">*</span></label> <select class="ol-select2" name="language" id="language" required> <option value=""><?php echo e(get_phrase('Select your course language')); ?> </option> <?php $__currentLoopData = App\Models\Language::get(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $language): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e(strtolower($language->name)); ?>" class="text-capitalize"><?php echo e($language->name); ?></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> <div class="fpb-7 mb-3"> <label class="form-label ol-form-label col-sm-2 col-form-label"><?php echo e(get_phrase('Pricing type')); ?><span class="text-danger ms-1">*</span></label> <div class="eRadios"> <div class="form-check"> <input type="radio" name="is_paid" value="1" class="form-check-input eRadioSuccess" id="paid" onchange="$('#paid-section').slideDown(200)" checked> <label for="paid" class="form-check-label"><?php echo e(get_phrase('Paid')); ?></label> </div> <div class="form-check"> <input type="radio" name="is_paid" value="0" class="form-check-input eRadioSuccess" id="free" onchange="$('#paid-section').slideUp(200)"> <label for="free" class="form-check-label"><?php echo e(get_phrase('Free')); ?></label> </div> <div class="paid-section" id="paid-section"> <div class="fpb-7 mb-3"> <label for="price" class="form-label ol-form-label"><?php echo e(get_phrase('Price')); ?> <small>(<?php echo e(currency()); ?>)</small><span class="text-danger ms-1">*</span></label> <input type="number" name="price" class="form-control ol-form-control" id="price" min="1" step=".01" placeholder="<?php echo e(get_phrase('Enter your course price')); ?> (<?php echo e(currency()); ?>)"> </div> <div class="fpb-7 mb-3"> <div class="form-check"> <input type="checkbox" name="discount_flag" value="1" class="form-check-input eRadioSuccess" id="discount_flag"> <label for="discount_flag" class="form-check-label"><?php echo e(get_phrase('Check if this course has discount')); ?></label> </div> </div> <div class="fpb-7 mb-3"> <label for="discounted_price" class="form-label ol-form-label"><?php echo e(get_phrase('Discounted price')); ?></label> <input type="number" name="discounted_price" class="form-control ol-form-control" id="discounted_price" min="1" step=".01" placeholder="<?php echo e(get_phrase('Enter your discount price')); ?> (<?php echo e(currency()); ?>)"> </div> </div> </div> </div> </div> <div class="fpb-7"> <label for="thumbnail" class="form-label ol-form-label"><?php echo e(get_phrase('Thumbnail')); ?></label> <input type="file" name="thumbnail" class="form-control ol-form-control" id="thumbnail" accept="image/*" /> </div> </div> <div class="pt-2"> <button type="submit" class="btn ol-btn-primary float-end"><?php echo e(get_phrase('Submit')); ?></button> </div> </div> </form> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startPush('js'); ?> <script> "use strict"; //Start progress var totalSteps = $('#v-pills-tab .nav-link').length var progressVal = 100 / totalSteps; $(function() { var pValPerItem = progressVal; $('#courseFormProgress .progress-bar').attr('aria-valuemin', 0); $('#courseFormProgress .progress-bar').attr('aria-valuemax', pValPerItem); $('#courseFormProgress .progress-bar').attr('aria-valuenow', pValPerItem); $('#courseFormProgress .progress-bar').width(pValPerItem + '%'); $('#courseFormProgress .progress-bar').text("Step 1 out of " + totalSteps); }); $("#v-pills-tab .nav-link").on('click', function() { var currentStep = $("#v-pills-tab .nav-link").index(this) + 1; var pValPerItem = currentStep * progressVal; $('#courseFormProgress .progress-bar').attr('aria-valuemin', 0); $('#courseFormProgress .progress-bar').attr('aria-valuemax', pValPerItem); $('#courseFormProgress .progress-bar').attr('aria-valuenow', pValPerItem); $('#courseFormProgress .progress-bar').width(pValPerItem + '%'); $('#courseFormProgress .progress-bar').text("Step " + currentStep + " out of " + totalSteps); if (currentStep == totalSteps) { $('#courseFormProgress .progress-bar').text("<?php echo e(get_phrase('Finish!')); ?>"); $('#courseFormProgress .progress-bar').addClass('bg-success'); } else { $('#courseFormProgress .progress-bar').removeClass('bg-success'); } }); //End progress </script> <?php $__env->stopPush(); ?> <?php echo $__env->make('layouts.admin', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/u735268861/domains/palsarh.in/public_html/resources/views/admin/course/create.blade.php ENDPATH**/ ?>