blessing-skin-server/resources/views/errors/404.tpl

10 lines
210 B
PHP
Raw Normal View History

2016-07-21 22:01:57 +08:00
@extends('errors.general')
@section('title', '404 Not Found')
@section('content')
<h1>404 Not Found</h1>
2016-09-18 19:45:01 +08:00
<p>{{ trans('errors.details').$exception->getMessage() ?: trans('errors.error404') }}</p>
2016-07-21 22:01:57 +08:00
@endsection