2017-09-14 22:21:00 +03:00
|
|
|
@extends('layouts.admin')
|
|
|
|
|
2019-01-31 17:09:59 +03:00
|
|
|
@section('title', trans('errors.forbidden_access'))
|
2017-09-14 22:21:00 +03:00
|
|
|
|
|
|
|
@section('content')
|
2019-01-31 17:09:59 +03:00
|
|
|
<div class="error-page">
|
|
|
|
<h2 class="headline text-red">403</h2>
|
|
|
|
|
|
|
|
<div class="error-content">
|
|
|
|
<h3><i class="fa fa-ban text-red"></i> {{ trans('errors.body.forbidden_access') }}</h3>
|
|
|
|
|
|
|
|
<p>{!! trans('errors.messages.forbidden_access', ['link' => url('/') ]) !!}</p>
|
2017-09-14 22:21:00 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|