shell bypass 403
<?php $__env->startSection('title', __('Create Page websites')); ?> <?php $__env->startSection('content'); ?> <div class="d-sm-flex align-items-center justify-content-between mb-4"> <h1 class="h3 mb-0 text-gray-800"><?php echo app('translator')->get('Create Page websites'); ?></h1> </div> <div class="row"> <div class="col-md-12"> <form role="form" method="post" action="<?php echo e(route('settings.pagewebsites.store')); ?>" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <div class="card"> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label class="form-label"><?php echo app('translator')->get('Title'); ?></label> <input type="text" name="title" value="<?php echo e(old('name')); ?>" class="form-control" placeholder="<?php echo app('translator')->get('Title'); ?>"> </div> <div class="form-group"> <div class="form-label"><?php echo app('translator')->get('Active'); ?></div> <label class="custom-switch"> <input type="checkbox" name="is_active" class="custom-switch-input"> <span class="custom-switch-indicator"></span> <span class="custom-switch-description"><?php echo app('translator')->get('Allow active'); ?></span> </label> </div> <div class="form-group"> <label class="form-label"><?php echo app('translator')->get('Slug'); ?></label> <input type="text" name="slug" value="<?php echo e(old('slug')); ?>" class="form-control" placeholder="<?php echo app('translator')->get('Slug'); ?>"> </div> <div class="form-group"> <label class="form-label"><?php echo app('translator')->get('Description'); ?></label> <textarea name="description" id="description_pages_website" rows="4" class="form-control"><?php echo e(old('description')); ?></textarea> </div> </div> </div> </div> <div class="card-footer"> <div class="d-flex"> <a href="<?php echo e(route('settings.pagewebsites.index')); ?>" class="btn btn-secondary"><?php echo app('translator')->get('Cancel'); ?></a> <button class="btn btn-primary ml-auto"><?php echo app('translator')->get('Save'); ?></button> </div> </div> </div> </form> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('core::layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/bouloter/public_html/Modules/PagesWebsite/Providers/../Resources/views/pagewebsites/create.blade.php ENDPATH**/ ?>