2019-12-26 10:53:50 +03:00
|
|
|
@extends('layouts.error')
|
2017-09-14 22:21:00 +03:00
|
|
|
|
2019-12-26 10:53:50 +03:00
|
|
|
@section('title', trans('errors.title.403'))
|
2017-09-14 22:21:00 +03:00
|
|
|
|
|
|
|
@section('content')
|
2019-11-16 10:21:14 +03:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-header">
|
2019-12-26 10:53:50 +03:00
|
|
|
<h2 class="mb-0 text-danger"><i class="fa fa-exclamation-triangle text-danger"></i> {{ trans('errors.header.403') }}</h2>
|
2019-11-16 10:21:14 +03:00
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
2019-12-26 10:53:50 +03:00
|
|
|
<p>{{ trans('errors.message.403') }}</p>
|
2019-01-31 17:09:59 +03:00
|
|
|
|
2020-01-07 17:25:54 +03:00
|
|
|
<a href="{{ url('/') }}" class="btn btn-success header-button-top"><span class="fa fa-tachometer-alt"></span> {{ trans('general.go_to', ['name' => trans_choice('general.dashboards', 1)]) }}</a>
|
2019-11-16 10:21:14 +03:00
|
|
|
</div>
|
2017-09-14 22:21:00 +03:00
|
|
|
</div>
|
|
|
|
@endsection
|