phpvms/resources/views/layouts/default/errors/401.blade.php

12 lines
287 B
PHP

@extends('app')
@section('title', __('errors.401.title'))
@section('content')
<div class="container registered-page">
<h3>@lang('errors.401.title')</h3>
<p>
{!! str_replace(':link', config('app.url'), __('errors.401.message')).'<br />' !!}
</p>
</div>
@endsection