File manager - Edit - /home/linknsbh/rassudr.online/storage/framework/views/fc073c9f9d210ff0c1c8d7c2884545bfa2a0e68d.php
Back
<?php $__env->startSection('content'); ?> <div class="page-header"> <h4 class="page-title"><?php echo e(__('Add Section')); ?></h4> <ul class="breadcrumbs"> <li class="nav-home"> <a href="<?php echo e(route('admin.dashboard')); ?>"> <i class="flaticon-home"></i> </a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e(__('Pages')); ?></a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e(__('Home Page')); ?></a> </li> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e(__('Additional Sections')); ?></a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e(__('Add Section')); ?></a> </li> </ul> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="card-title d-inline-block"><?php echo e(__('Add Section')); ?></div> <a class="btn btn-info btn-sm float-right d-inline-block" href="<?php echo e(route('admin.home.additional_sections', ['language' => $currentLang->code])); ?>"> <span class="btn-label"> <i class="fas fa-backward"></i> </span> <?php echo e(__('Back')); ?> </a> </div> <div class="card-body"> <div class="row"> <div class="col-lg-8 offset-lg-2"> <div class="alert alert-danger pb-1 dis-none" id="pageErrors"> <button type="button" class="close" data-dismiss="alert">×</button> <ul></ul> </div> <form id="pageForm" action="<?php echo e(route('admin.home.additional_section.store')); ?>" method="POST"> <?php echo csrf_field(); ?> <div class="row"> <div class="col-lg-6"> <div class="form-group p-0"> <label for=""><?php echo e(__('Position')); ?>*</label> <select name="order" class="form-control select2"> <option selected disabled><?php echo e(__('Select a Section')); ?></option> <option value="hero_section"> <?php echo e(__('After Hero Section')); ?> </option> <option value="category_section"> <?php echo e(__('After Category Section')); ?> </option> <option value="work_process_section"> <?php echo e(__('After Work Process Section')); ?> </option> <option value="featured_service_section"> <?php echo e(__('After Featured Service Section')); ?> </option> <option value="testimonial_section"> <?php echo e(__('After Testimonial Section')); ?> </option> <option value="call_to_action_section"> <?php echo e(__('After Call to Action Section')); ?> </option> <option value="vendor_section"> <?php echo e(__('After Vendor Section')); ?> </option> <option value="latest_service_section"> <?php echo e(__('After Latest Service Section')); ?> </option> <option value="footer_section"> <?php echo e(__('After Footer Section')); ?> </option> <?php if($themeVersion != 1): ?> <option value="banner_section"> <?php echo e(__('After Banner Section')); ?> </option> <?php endif; ?> </select> </div> </div> <div class="col-lg-6"> <div class="form-group p-0"> <label for=""><?php echo e(__('Order Number')); ?>*</label> <input type="number" name="serial_number" class="form-control"> </div> <p class="text-warning"> <?php echo e(__('The higher the order number is, the later the section will be shown.')); ?></p> </div> </div> <input type="hidden" name="page_type" value="home"> <div id="accordion" class="mt-3"> <?php $__currentLoopData = $languages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $language): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="version"> <div class="version-header" id="heading<?php echo e($language->id); ?>"> <h5 class="mb-0"> <button type="button" class="btn btn-link <?php echo e($language->direction == 1 ? 'rtl text-right' : ''); ?>" data-toggle="collapse" data-target="#collapse<?php echo e($language->id); ?>" aria-expanded="<?php echo e($language->is_default == 1 ? 'true' : 'false'); ?>" aria-controls="collapse<?php echo e($language->id); ?>"> <?php echo e($language->name . __(' Language')); ?> <?php echo e($language->is_default == 1 ? '(Default)' : ''); ?> </button> </h5> </div> <div id="collapse<?php echo e($language->id); ?>" class="collapse <?php echo e($language->is_default == 1 ? 'show' : ''); ?>" aria-labelledby="heading<?php echo e($language->id); ?>" data-parent="#accordion"> <div class="version-body"> <div class="row"> <div class="col-lg-12"> <div class="form-group <?php echo e($language->direction == 1 ? 'rtl text-right' : ''); ?>"> <label><?php echo e(__('Name')); ?>*</label> <input type="text" class="form-control" name="<?php echo e($language->code); ?>_name" placeholder="<?php echo e(__('Enter section name')); ?>"> </div> </div> </div> <div class="row"> <div class="col-lg-12"> <div class="form-group <?php echo e($language->direction == 1 ? 'rtl text-right' : ''); ?>"> <label><?php echo e(__('Content')); ?>*</label> <textarea class="form-control summernote" name="<?php echo e($language->code); ?>_content" id="content-<?php echo e($language->id); ?>" data-height="300"></textarea> </div> </div> </div> <div class="row"> <div class="col-lg-12"> <?php $currLang = $language; ?> <?php $__currentLoopData = $languages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $language): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php if($language->id == $currLang->id) continue; ?> <div class="form-check py-0"> <label class="form-check-label"> <input class="form-check-input" type="checkbox" onchange="cloneInput('collapse<?php echo e($currLang->id); ?>', 'collapse<?php echo e($language->id); ?>', event)"> <span class="form-check-sign"><?php echo e(__('Clone for')); ?> <strong class="text-capitalize text-secondary"><?php echo e($language->name); ?></strong> <?php echo e(__('language')); ?></span> </label> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </div> </div> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </form> </div> </div> </div> <div class="card-footer"> <div class="row"> <div class="col-12 text-center"> <button type="submit" form="pageForm" class="btn btn-success"> <?php echo e(__('Save')); ?> </button> </div> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('script'); ?> <script type="text/javascript" src="<?php echo e(asset('assets/js/admin-partial.js')); ?>"></script> <?php $__env->stopSection(); ?> <?php echo $__env->make('admin.layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/linknsbh/rassudr.online/resources/views/admin/home-page/custom-section/create.blade.php ENDPATH**/ ?>
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.11 |
proxy
|
phpinfo
|
Settings