grocy/views/errors/403.blade.php
2020-08-31 20:32:50 +02:00

12 lines
234 B
PHP

@extends('errors.base')
@section('title', $__t('Unauthorized'))
@section('content')
<div class="row">
<div class="col">
<h1 class="alert alert-danger">{{ $__t('You are not allowed to view this page') }}</h1>
</div>
</div>
@stop