Viewing file: 6b83cdb04d94af936341b42b4bf781fe.php (2.12 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?> <?php echo e(trans('admin.publication_edit')); ?> <?php $__env->stopSection(); ?>
<?php $__env->startSection('extra-css'); ?> <link href="https://cdn.jsdelivr.net/npm/summernote/dist/summernote-bs4.min.css" rel="stylesheet"> <?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?> <section class="content"> <div class="row"> <div class="col-12 mx-auto col-sm-10 mt-3"> <div class="card"> <div class="card-header"> <h2 class="card-title"> <?php echo e(trans('admin.edit')); ?> </h2> <a class="btn btn-info float-right" href="<?php echo e(route('admin.publications.index')); ?>"><?php echo e(trans('admin.back')); ?></a> </div> <form method="post" role="form" id="bloglistForm" action="<?php echo e(route('admin.publications.update',[$publication])); ?>" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <?php echo method_field('PUT'); ?> <div class="card-body"> <?php echo $__env->make('admin.publication.form', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> </div> <div class="card-footer"> <button type="submit" class="btn btn-primary"><?php echo e(trans('admin.submit')); ?></button> </div> </form> </div> </div> </div> </div> </section> <?php $__env->stopSection(); ?>
<?php $__env->startSection('extra-scripts'); ?> <script src="https://cdn.jsdelivr.net/npm/summernote/dist/summernote-bs4.min.js"></script> <script> $(document).ready(function() { $('.summernote').summernote(); }); </script> <?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.admin', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/portfolio.picotech.app/public_html/resources/views/admin/publication/edit.blade.php ENDPATH**/ ?>
|