shell bypass 403
@extends('core::layouts.app') @section('title', __('Update Page websites')) @section('content') <div class="d-sm-flex align-items-center justify-content-between mb-4"> <h1 class="h3 mb-0 text-gray-800">@lang('Update Page websites')</h1> </div> <div class="row"> <div class="col-md-12"> <form role="form" method="post" action="{{ route('settings.pagewebsites.update', $item->id) }}" enctype="multipart/form-data"> @csrf @method('PUT') <div class="card"> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label class="form-label">@lang('Title')</label> <input type="text" name="title" value="{{$item->title}}" class="form-control" placeholder="@lang('Title')"> </div> <div class="form-group"> <div class="form-label">@lang('Active')</div> <label class="custom-switch"> @if ($item->is_active) <input type="checkbox" name="is_active" value="1" class="custom-switch-input" checked> @else <input type="checkbox" name="is_active" value="0" class="custom-switch-input" > @endif <span class="custom-switch-indicator"></span> <span class="custom-switch-description">@lang('Allow active page')</span> </label> </div> <div class="form-group"> <label class="form-label">@lang('Slug')</label> <input type="text" name="slug" value="{{$item->slug}}" class="form-control" placeholder="@lang('Slug')"> </div> <div class="form-group"> <label class="form-label">@lang('Description')</label> <textarea name="description" id="description_pages_website" rows="4" class="form-control">{{$item->description}}</textarea> </div> </div> </div> </div> <div class="card-footer"> <div class="d-flex"> <a href="{{ route('settings.pagewebsites.index') }}" class="btn btn-secondary">@lang('Cancel')</a> <button class="btn btn-primary ml-auto">@lang('Save')</button> </div> </div> </div> </form> </div> </div> @stop