Viewing file: 3cc84895e72132e9d95b1e983e9bb827.php (3.01 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?> <?php echo e(trans('admin.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')); ?>"> <style> .card { width: 100% !important; max-width: 700px !important; }
.input-sm { font-size: 14px; padding: 10px; } .content-wrapper{ padding-left: 25% !important; padding-right: 25% !important; padding-top: 10% !important; } .table-body{ padding: 50px 30px; } .form-control{ font-size: 25px !important; height: calc(4.25rem + 2px) !important; } .card-footer{ padding: 0px 0px !important; } </style> <?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?> <section class="content"> <div class="row"> <div class="col-12"> <div class="card"> <div class="card-body table-body"> <div class="row"> <div class="col-lg-12"> <form method="post" role="form" id="Services_title_Form" action="<?php echo e(route('admin.settings.header_title',['name'=>'services'])); ?>"> <?php echo csrf_field(); ?> <div class="form-group"> <input name="header_title" value="<?php echo e(get_settings('services')); ?>" type="text" id="header_title" class="form-control" placeholder="Services Header Title"> </div> <div class="card-footer float-right"> <button type="submit" class="btn btn-primary"><?php echo e(trans('admin.submit')); ?></button> </div> </form> </div> </div> </div> </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 E:\usa\portfolio-usa\resources\views/admin/services/header.blade.php ENDPATH**/ ?>
|