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

12 lines
287 B
PHP
Raw Normal View History

@extends('app')
2018-05-19 03:42:47 +08:00
@section('title', __('errors.401.title'))
2017-08-13 00:46:05 +08:00
@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>
2017-12-24 01:17:29 +08:00
@endsection