grocy/views/errors/403.blade.php
Bernd Bestel 4f31627f8e
Review
2020-08-29 12:04:15 +02:00

12 lines
268 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