10 lines
236 B
PHP
10 lines
236 B
PHP
@extends('errors.general')
|
|
|
|
@section('title', '403 Forbidden')
|
|
|
|
@section('content')
|
|
<h1>403 Forbidden</h1>
|
|
|
|
<p>{{ trans('errors.exception.message', ['msg' => $exception->getMessage() ?: trans('errors.http.msg-403')]) }}</p>
|
|
@endsection
|