mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 17:45:39 +00:00
12 lines
234 B
PHP
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
|