@extends('errors.layout')
@section('title', __('Forbidden'))
@section('badge', __('Access Denied'))
@section('code', '403')
@section('heading', __('Access forbidden'))
@section('message', isset($exception) && $exception->getMessage() ? $exception->getMessage() : __('You don\'t have permission to access this resource. Contact your administrator if you believe this is a mistake.'))
@section('actions')
{{ __('Go Home') }}
@endsection