8 lines
199 B
PHP
8 lines
199 B
PHP
|
|
@extends('layouts.app')
|
||
|
|
|
||
|
|
@section('page-title', "Forbidden - " . config('app.name') )
|
||
|
|
|
||
|
|
@section('content')
|
||
|
|
<x-error-block error-type="page-not-allowed" message="{{ $permission }}" />
|
||
|
|
@endsection
|