Files
grocy/views/errors/403.blade.php
2020-08-29 16:41:27 +02:00

12 lines
241 B
PHP

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