Viewing file: 380d91d118f185997567a1c3d9c9ab4195e7893c.php (2.43 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title','Edit Restaurant'); ?>
<?php $__env->startSection('css'); ?> <link href="<?php echo e(asset('vendor/jquery-steps/css/jquery.steps.css')); ?>" rel="stylesheet"> <?php $__env->stopSection(); ?>
<?php $__env->startSection('main-content'); ?> <div class="row page-titles mx-0"> <div class="col-sm-6 p-md-0"> <div class="welcome-text"> <h4><?php echo e(trans('layout.restaurant')); ?></h4> <p class="mb-0"><?php echo e(trans('layout.restaurant_edit')); ?></p> </div> </div> <div class="col-sm-6 p-md-0 justify-content-sm-end mt-2 mt-sm-0 d-flex"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="javascript:void(0)"><?php echo e(trans('layout.home')); ?></a></li> <li class="breadcrumb-item"><a href="<?php echo e(route('restaurant.index')); ?>"><?php echo e(trans('layout.restaurant')); ?></a></li> <li class="breadcrumb-item active"><a href="javascript:void(0)"><?php echo e(trans('layout.edit')); ?></a></li> </ol> </div> </div> <!-- row --> <div class="row"> <div class="col-xl-12 col-xxl-12"> <div class="card"> <div class="card-header"> <h4 class="card-title"><?php echo e(trans('layout.edit')); ?></h4> </div> <div class="card-body"> <form action="<?php echo e(route('restaurant.update',[$restaurant])); ?>" method="post" id="step-form-horizontal" class="step-form-horizontal" enctype="multipart/form-data"> <?php echo method_field('PUT'); ?> <?php echo $__env->make('restaurant.form', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> </form> </div> </div> </div> </div> <?php $__env->stopSection(); ?>
<?php $__env->startSection('js'); ?> <script src="<?php echo e(asset('vendor/jquery-steps/build/jquery.steps.min.js')); ?>"></script> <script src="<?php echo e(asset('js/plugins-init/jquery-steps-init.js')); ?>"></script> <?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.dashboard', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picoaqep/qr.picotech.app/resources/views/restaurant/edit.blade.php ENDPATH**/ ?>
|