Viewing file: edb6460644a19d5116ab3168ac35d341.php (3.14 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?> <?php echo e(trans('Services')); ?> <?php $__env->stopSection(); ?>
<?php $__env->startSection('extra-css'); ?> <link rel="stylesheet" href="<?php echo e(asset('plugins/datatables-bs4/css/dataTables.bootstrap4.min.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('plugins/datatables-responsive/css/responsive.bootstrap4.min.css')); ?>">
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?> <section class="content"> <div class="row"> <div class="col-12"> <div class="card"> <div class="card-header"> <h2 class="card-title"> <?php echo e(trans('Header Title Section')); ?> </h2> </div> <form method="post" role="form" id="Services_title_Form" action="<?php echo e(route('admin.theme.services.header.store')); ?>"> <?php echo csrf_field(); ?> <div class="card-body table-body"> <div class="row"> <div class="col-lg-12"> <?php echo csrf_field(); ?> <?php $services_header =json_decode(get_settings('services')); ?> <div class="form-group"> <label for="title">Title</label> <input value="<?php echo e(isset($services_header) ? $services_header->title : old('title')); ?>" type="text" name="title" class="form-control" id="title" placeholder="Title"> </div> <div class="form-group"> <label for="sub_title">Sub Title</label> <input value="<?php echo e(isset($services_header->sub_title)?$services_header->sub_title:''); ?>" type="text" name="sub_title" class="form-control" id="title" placeholder="Sub Title"> </div> </div> </div> </div> <div class="card-footer"> <button type="submit" class="btn btn-primary"><?php echo e(trans('admin.submit')); ?></button> </div> </form> </div> </div> </div> </section> <?php $__env->stopSection(); ?>
<?php $__env->startSection('extra-scripts'); ?> <script src="<?php echo e(asset('plugins/datatables/jquery.dataTables.min.js')); ?>"></script> <script src="<?php echo e(asset('plugins/datatables-bs4/js/dataTables.bootstrap4.min.js')); ?>"></script> <script src="<?php echo e(asset('plugins/datatables-responsive/js/dataTables.responsive.min.js')); ?>"></script> <script src="<?php echo e(asset('plugins/datatables-responsive/js/responsive.bootstrap4.min.js')); ?>"></script> <?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.admin', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/portfolio2.picotech.app/public_html/resources/views/admin/services/header.blade.php ENDPATH**/ ?>
|