2018-03-12 07:00:42 +08:00
|
|
|
@extends('app')
|
2018-05-18 22:02:49 +08:00
|
|
|
@section('title', __trans('frontend.errors.401title'))
|
2018-02-04 08:18:09 +08:00
|
|
|
|
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>
|
2018-02-04 08:18:09 +08:00
|
|
|
<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
|
2018-02-04 08:18:09 +08:00
|
|
|
</p>
|
2017-08-13 00:46:05 +08:00
|
|
|
</div>
|
2017-12-24 01:17:29 +08:00
|
|
|
@endsection
|