芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/public_html/storage/framework/views/d4ad8cccf4fd0103670a585725359e2a.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.breadcrumb_image')); ?></h4> <?php if(isset($breadcrumb_image)): ?> <?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('breadcrumb-image.update', $breadcrumb_image->id)); ?>" method="POST" enctype="multipart/form-data"> <?php echo method_field('PUT'); ?> <?php echo csrf_field(); ?> <?php endif; ?> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image"><?php echo e(__('content.image')); ?> (<?php echo e(__('content.size')); ?> 1920 x 400) (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted"><?php echo e(__('content.please_use_recommended_sizes')); ?></small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> <?php if(!empty($breadcrumb_image->section_image)): ?> <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="<?php echo e(__('content.current_image')); ?>"> <img src="<?php echo e(asset('uploads/img/breadcrumb/'.$breadcrumb_image->section_image)); ?>" alt="logo image" class="rounded"> </a> <?php else: ?> <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="<?php echo e(__('content.not_yet_created')); ?>"> <img src="<?php echo e(asset('uploads/img/dummy/no-image.jpg')); ?>" alt="no image" class="rounded w-25"> </a> <?php endif; ?> </div> <?php if(!empty($breadcrumb_image->section_image)): ?> <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal<?php echo e($breadcrumb_image->id); ?>"> <i class="fa fa-trash text-danger font-18"></i> </a> <?php endif; ?> </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </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="#breadcrumbImageDestroyModal<?php echo e($breadcrumb_image->id); ?>"> <i class="fa fa-trash"></i> <?php echo e(__('content.reset')); ?> </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal<?php echo e($breadcrumb_image->id); ?>" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" 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="messageModalCenterTitle"><?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('breadcrumb-image.destroy_image', $breadcrumb_image->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> <!-- Modal --> <div class="modal fade" id="breadcrumbImageDestroyModal<?php echo e($breadcrumb_image->id); ?>" tabindex="-1" role="dialog" aria-labelledby="breadcrumbImageDestroyModalCenterTitle" 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="breadcrumbImageDestroyModalCenterTitle"><?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('breadcrumb-image.destroy', $breadcrumb_image->id)); ?>" method="POST"> <?php echo method_field('DELETE'); ?> <?php echo csrf_field(); ?> <button type="button" class="btn btn-danger mr-1" 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('breadcrumb-image.store')); ?>" method="POST" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <?php endif; ?> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image"><?php echo e(__('content.image')); ?> (<?php echo e(__('content.size')); ?> 1920 x 400) (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted"><?php echo e(__('content.please_use_recommended_sizes')); ?></small> </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/breadcrumb_image/create.blade.php ENDPATH**/ ?>
Page is not found
Oops! Page not found.
Sorry, an error has occured, Requested page not found!
Back To Homepage