shell bypass 403
<?php $__env->startSection('content'); ?>
<?php echo $__env->make('admin.breadcrumb', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-lg-12">
<div class=" card border-0 box-shadow">
<div class="card-body">
<div class="form-validation">
<form action="<?php echo e(URL::to('admin/gallery/update-' . $gallerydata->id)); ?>" method="post"
enctype="multipart/form-data">
<?php echo csrf_field(); ?>
<div class="row">
<div class="col-12">
<div class="form-group">
<label class="form-label" for=""><?php echo e(trans('labels.image')); ?>
<span class="text-danger">*</span> </label>
<input type="file" class="form-control" name="image" accept="image/*"
required>
<img src="<?php echo e(helper::image_path($gallerydata->image)); ?>" alt=""
class="img-fluid rounded h-50px mt-1">
</div>
</div>
</div>
<div
class="form-group mt-3 <?php echo e(session()->get('direction') == 2 ? 'text-start' : 'text-end'); ?>">
<a href="<?php echo e(URL::to('admin/gallery')); ?>"
class="btn btn-danger px-4"><?php echo e(trans('labels.cancel')); ?></a>
<button
class="btn btn-primary px-4 <?php echo e(Auth::user()->type == 4 ? (helper::check_access('role_gallery', Auth::user()->role_id, 'edit') == 1 ? '' : 'd-none') : ''); ?>"
<?php if(env('Environment') == 'sendbox'): ?> type="button"
onclick="myFunction()" <?php else: ?> type="submit" <?php endif; ?>><?php echo e(trans('labels.save')); ?></button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('admin.theme.default', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /www/wwwroot/koreanshop.lk/resources/views/admin/gallery/edit.blade.php ENDPATH**/ ?>