Files
grocy/views/errors/403.blade.php

12 lines
234 B
PHP
Raw Normal View History

@extends('errors.base')
@section('title', $__t('Unauthorized'))
@section('content')
2020-08-31 20:32:50 +02:00
<div class="row">
<div class="col">
<h1 class="alert alert-danger">{{ $__t('You are not allowed to view this page') }}</h1>
</div>
2020-08-31 20:32:50 +02:00
</div>
@stop