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

14 lines
354 B
PHP
Raw Normal View History

@extends('app')
2018-05-18 22:02:49 +08:00
@section('title', __trans('frontend.errors.401title'))
2017-08-13 00:46:05 +08:00
@section('content')
<div class="container registered-page">
2018-05-18 22:02:49 +08:00
<h3>@lang('frontend.errors.401header')</h3>
<p>
2018-05-18 22:02:49 +08:00
@foreach(trans('frontend.errors.401message') as $line)
{!! str_replace(':link', config('app.url'), $line).'<br />' !!}
@endforeach
</p>
2017-08-13 00:46:05 +08:00
</div>
2017-12-24 01:17:29 +08:00
@endsection