File: D:/HostingSpaces/SBogers10/inzigd.komma.pro/resources/views/kms/auth/unauthorized.blade.php
@extends('kms.layouts.base')
@section('body')
<div class="login">
<div class="placeholder">
<div class="header">
<h2>@lang('auth.unauthorized')</h2>
<img src="{!! asset('/img/kms/logo_blue.svg') !!}" alt="Komma Management System"/>
</div>
<p style="color: #000;">@lang('auth.unauthorized_explanation')</p>
@if(\App::environment() == 'local')
<p style="color: #000;">
<strong>Local:</strong> Make sure you have created a policies for the model called by:<br/>
<span style="font-size: 13px;">{!! request()->route()->getAction('controller') !!}</span>
</p>
@endif
<a href="{{ url()->previous() }}">@lang('auth.back')</a>
</div>
</div>
@stop