Viewing file: f5e96e9195566f96043492e145d2ed7507adf5e2.php (3.22 KB) -rwxrwxr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title', trans('layout.edit')); ?>
<?php $__env->startSection('css'); ?> <link rel="stylesheet" href="https://code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css"> <style> .float-right{ float: right; } .input-group-text{ border-top-left-radius: 0 !important; border-bottom-left-radius: 0 !important; } </style> <?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.reservation')); ?></h4> <p class="mb-0"><?php echo e(trans('layout.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('check.reservation')); ?>"><?php echo e(trans('layout.reservation')); ?></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('update.reservation', [$reservation->id])); ?>" method="post" id="step-form-horizontal" class="step-form-horizontal" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <?php echo method_field('put'); ?> <?php echo $__env->make('reservation.form', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<button class="btn btn-primary btn-sm float-right" type="submit">Submit</button> </form> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('js'); ?> <script src="https://code.jquery.com/ui/1.13.2/jquery-ui.min.js"></script> <script> $(document).ready(function() {
$("#checkin-datepicker").datepicker({ dateFormat: "D, M d yy", minDate: 0, // Prevent past date selection onSelect: function(dateText) { $("#checkin-label").text(dateText); } });
$("#checkin-date").on("click", function() { $("#checkin-datepicker").datepicker("show"); }); }); </script> <?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.dashboard', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/qr.picotech.app/public_html/resources/views/reservation/edit.blade.php ENDPATH**/ ?>
|