2019-12-26 07:53:50 +00:00
|
|
|
@extends('layouts.error')
|
2017-09-14 19:21:00 +00:00
|
|
|
|
2019-12-26 07:53:50 +00:00
|
|
|
@section('title', trans('errors.title.403'))
|
2017-09-14 19:21:00 +00:00
|
|
|
|
|
|
|
|
@section('content')
|
2019-11-16 07:21:14 +00:00
|
|
|
<div class="card">
|
|
|
|
|
<div class="card-header">
|
2020-10-22 15:58:58 +00:00
|
|
|
<h2 class="mb-0 text-danger">
|
|
|
|
|
<i class="fa fa-exclamation-triangle text-danger"></i> {{ trans('errors.header.403') }}
|
|
|
|
|
</h2>
|
2019-11-16 07:21:14 +00:00
|
|
|
</div>
|
2020-04-22 09:48:51 +00:00
|
|
|
|
2019-11-16 07:21:14 +00:00
|
|
|
<div class="card-body">
|
2019-12-26 07:53:50 +00:00
|
|
|
<p>{{ trans('errors.message.403') }}</p>
|
2019-01-31 14:09:59 +00:00
|
|
|
|
2020-01-21 08:59:52 +00:00
|
|
|
@php $landing_page = user() ? route(user()->landing_page) : route('login'); @endphp
|
|
|
|
|
|
2020-10-22 15:58:58 +00:00
|
|
|
<a href="{{ $landing_page }}" class="btn btn-success">{{ trans('general.go_to_dashboard') }}</a>
|
2019-11-16 07:21:14 +00:00
|
|
|
</div>
|
2017-09-14 19:21:00 +00:00
|
|
|
</div>
|
|
|
|
|
@endsection
|