芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/public_html/storage/framework/views/f4eac273e5d519a54b8179ec3974071f.php
<?php $__env->startSection('content'); ?> <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title"><?php echo e(__('content.contact_info_widget')); ?> <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <?php echo e(__('content.'.$style)); ?> </button> <div class="dropdown-menu"> <a class="dropdown-item" href="<?php echo e(route('contact-info-widget.create', ['style' => 'style1'])); ?>"><?php echo e(__('content.style1')); ?></a> </div> </div> </h4> <?php if(isset($contact_info_widget)): ?> <?php if($demo_mode == "on"): ?> <!-- Include Alert Blade --> <?php echo $__env->make('admin.demo_mode.demo-mode', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <?php else: ?> <form action="<?php echo e(route('contact-info-widget.update', $contact_info_widget->id)); ?>" method="POST"> <?php echo method_field('PUT'); ?> <?php echo csrf_field(); ?> <?php endif; ?> <input name="style" type="hidden" value="<?php echo e($style); ?>"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title"><?php echo e(__('content.title')); ?></label> <input type="text" name="title" class="form-control" id="title" value="<?php echo e($contact_info_widget->title); ?>"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description"><?php echo e(__('content.description')); ?></label> <input type="text" name="description" class="form-control" id="description" value="<?php echo e($contact_info_widget->description); ?>"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="address"><?php echo e(__('content.address')); ?></label> <input type="text" name="address" class="form-control" id="address" value="<?php echo e($contact_info_widget->address); ?>"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="email"><?php echo e(__('content.email')); ?></label> <input type="text" name="email" class="form-control" id="email" value="<?php echo e($contact_info_widget->email); ?>"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="phone"><?php echo e(__('content.phone')); ?></label> <input type="text" name="phone" class="form-control" id="phone" value="<?php echo e($contact_info_widget->phone); ?>"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="working_hour"><?php echo e(__('content.working_hour')); ?></label> <input type="text" name="working_hour" class="form-control" id="working_hour" value="<?php echo e($contact_info_widget->working_hour); ?>"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2"><?php echo e(__('content.submit')); ?></button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#contactInfoWidgetDestroyModal<?php echo e($contact_info_widget->id); ?>"> <i class="fa fa-trash"></i> <?php echo e(__('content.reset')); ?> </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="contactInfoWidgetDestroyModal<?php echo e($contact_info_widget->id); ?>" tabindex="-1" role="dialog" aria-labelledby="contactInfoWidgetDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="contactInfoWidgetDestroyModalCenterTitle"><?php echo e(__('content.delete')); ?></h5> <button type="button" class="close" data-dismiss="modal" aria-label="<?php echo e(__('content.close')); ?>"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> <?php echo e(__('content.you_wont_be_able_to_revert_this')); ?> </div> <div class="modal-footer"> <form class="d-inline-block" action="<?php echo e(route('contact-info-widget.destroy', $contact_info_widget->id)); ?>" method="POST"> <?php echo method_field('DELETE'); ?> <?php echo csrf_field(); ?> <button type="button" class="btn btn-danger" data-dismiss="modal"><?php echo e(__('content.cancel')); ?></button> <button type="submit" class="btn btn-success"><?php echo e(__('content.yes_delete_it')); ?></button> </form> </div> </div> </div> </div> <?php else: ?> <?php if($demo_mode == "on"): ?> <!-- Include Alert Blade --> <?php echo $__env->make('admin.demo_mode.demo-mode', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <?php else: ?> <form action="<?php echo e(route('contact-info-widget.store')); ?>" method="POST"> <?php echo csrf_field(); ?> <?php endif; ?> <input name="style" type="hidden" value="<?php echo e($style); ?>"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title"><?php echo e(__('content.title')); ?></label> <input type="text" name="title" class="form-control" id="title"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description"><?php echo e(__('content.description')); ?></label> <input type="text" name="description" class="form-control" id="description"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="address"><?php echo e(__('content.address')); ?></label> <input type="text" name="address" class="form-control" id="address"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="email"><?php echo e(__('content.email')); ?></label> <input type="text" name="email" class="form-control" id="email"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="phone"><?php echo e(__('content.phone')); ?></label> <input type="text" name="phone" class="form-control" id="phone"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="working_hour"><?php echo e(__('content.working_hour')); ?></label> <input type="text" name="working_hour" class="form-control" id="working_hour"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2"><?php echo e(__('content.submit')); ?></button> </div> </div> </form> <?php endif; ?> </div> </div> </div> <!-- end row --> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.admin.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/digitalh/public_html/resources/views/admin/setting/contact_info_widget/create.blade.php ENDPATH**/ ?>
Page is not found
Oops! Page not found.
Sorry, an error has occured, Requested page not found!
Back To Homepage