@extends('layouts.web', ['nav' => true, 'banner' => false, 'footer' => true, 'cookie' => false, 'setting' => false, 'title' => true, 'title' => __('403 - Page Forbidden')]) @php // Page content use Illuminate\Support\Facades\DB; use App\Setting; $supportPage = DB::table('pages')->where('page_name', 'footer')->orWhere('page_name', 'contact')->get(); $config = DB::table('config')->get(); $settings = Setting::where('status', 1)->first(); @endphp @section('content') {{-- Page Forbidden Page --}}

{{ __('403') }}

{{ __('Page Forbidden') }}

@endsection