@extends('errors::layout')
@section('title', 'Access denied')
@section('message')
{{ __('Access denied') }}
@php
$msg = $exception->getMessage();
@endphp
@if ($msg && strstr($msg, '[display]'))
{{ str_replace('[display]', '', $msg) }}
@endif
{{ __('Go to') }} {{ __('Homepage') }}
@endsection