shell bypass 403
<?php $__env->startSection('title', __('Edit Country Detail')); ?> <?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('Edit Country Detail'); ?></h1> </div> <div class="row"> <div class="col-md-12"> <form role="form" method="post" action="<?php echo e(route('settings.location.country_details.update', ['id' => $item->id])); ?>"> <?php echo csrf_field(); ?> <?php echo method_field('PUT'); ?> <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('Country'); ?></label> <input type="text" name="country_name" value="<?php echo e(old('country_name', $item->country->name)); ?>" class="form-control" placeholder="<?php echo app('translator')->get('Country'); ?>"> <?php $__errorArgs = ['country_name']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <small class="text-danger"><?php echo e($message); ?></small> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <div class="form-group"> <label class="form-label"><?php echo app('translator')->get('Sort name'); ?></label> <input type="text" name="sort_name" value="<?php echo e(old('sort_name', $item->sort_name)); ?>" class="form-control" placeholder="<?php echo app('translator')->get('Sort name'); ?>"> <?php $__errorArgs = ['sort_name']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <small class="text-danger"><?php echo e($message); ?></small> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <div class="form-group"> <label class="form-label"><?php echo app('translator')->get('Phone code'); ?></label> <input type="text" name="phone_code" value="<?php echo e(old('phone_code', $item->phone_code)); ?>" class="form-control" placeholder="<?php echo app('translator')->get('Phone code'); ?>"> <?php $__errorArgs = ['phone_code']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <small class="text-danger"><?php echo e($message); ?></small> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <div class="form-group"> <label class="form-label"><?php echo app('translator')->get('Currency'); ?></label> <input type="text" name="currency" value="<?php echo e(old('currency', $item->currency)); ?>" class="form-control" placeholder="<?php echo app('translator')->get('Currency'); ?>"> <?php $__errorArgs = ['currency']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <small class="text-danger"><?php echo e($message); ?></small> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <div class="form-group"> <label class="form-label"><?php echo app('translator')->get('Code'); ?></label> <input type="text" name="code" value="<?php echo e(old('code', $item->code)); ?>" class="form-control" placeholder="<?php echo app('translator')->get('Code'); ?>"> <?php $__errorArgs = ['code']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <small class="text-danger"><?php echo e($message); ?></small> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <div class="form-group"> <label class="form-label"><?php echo app('translator')->get('Symbol'); ?></label> <input type="text" name="symbol" value="<?php echo e(old('symbol', $item->symbol)); ?>" class="form-control" placeholder="<?php echo app('translator')->get('Symbol'); ?>"> <?php $__errorArgs = ['symbol']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <small class="text-danger"><?php echo e($message); ?></small> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <div class="form-group"> <label class="form-label"><?php echo app('translator')->get('Thousand separator'); ?></label> <input type="text" name="thousand_separator" value="<?php echo e(old('thousand_separator', $item->thousand_separator)); ?>" class="form-control" placeholder="<?php echo app('translator')->get('Thousand separator'); ?>"> <?php $__errorArgs = ['thousand_separator']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <small class="text-danger"><?php echo e($message); ?></small> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <div class="form-group"> <label class="form-label"><?php echo app('translator')->get('Decimal separator'); ?></label> <input type="text" name="decimal_separator" value="<?php echo e(old('decimal_separator', $item->decimal_separator)); ?>" class="form-control" placeholder="<?php echo app('translator')->get('Decimal separator'); ?>"> <?php $__errorArgs = ['decimal_separator']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <small class="text-danger"><?php echo e($message); ?></small> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> </div> </div> </div> <div class="card-footer"> <div class="d-flex justify-content-between"> <a href="<?php echo e(route('settings.location.country_details.index')); ?>" class="btn btn-secondary"><?php echo app('translator')->get('Cancel'); ?></a> <div> <button class="btn btn-primary"><?php echo app('translator')->get('Save'); ?></button> </div> </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/Location/Providers/../Resources/views/country_details/edit.blade.php ENDPATH**/ ?>