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

File "5180ee468e176edd69746c8f2c777b55.php"

Full Path: /home2/yvrgircc/public_html/ariseskilltech.com/storage/framework/views/5180ee468e176edd69746c8f2c777b55.php
File size: 1.05 KB
MIME-type: text/x-php
Charset: utf-8

<?php
    $sections = App\Models\Section::where('id', $id)->first();
?>
<form action="<?php echo e(route('admin.section.update')); ?>" method="post" enctype="multipart/form-data">
    <?php echo csrf_field(); ?>
    <input type="hidden" name="section_id" value="<?php echo e($id); ?>">
    <div class="row">
        <div class="col-12">
            <div class="mb-3">
                <label for="category_name" class="form-label ol-form-label"><?php echo e(get_phrase('Title')); ?></label>
                <input type="text" name="up_title" class="form-control ol-form-control" id="category_name" placeholder="<?php echo e(get_phrase('Enter title')); ?>" aria-label="<?php echo e(get_phrase('Enter title')); ?>" value="<?php echo e($sections->title); ?>" required />
            </div>

            <div class="mb-2">
                <button class="btn ol-btn-primary"><?php echo e(get_phrase('Update')); ?></button>
            </div>
        </div>
    </div>
</form>
<?php /**PATH C:\xampp\htdocs\Arise\resources\views/admin/course/section_edit.blade.php ENDPATH**/ ?>