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

11 lines
237 B
PHP
Raw Normal View History

2016-07-21 22:01:57 +08:00
@extends('errors.general')
@section('title', '404 Not Found')
@section('content')
2016-09-28 13:23:07 +08:00
2016-07-21 22:01:57 +08:00
<h1>404 Not Found</h1>
2016-09-28 13:23:07 +08:00
<p>{{ trans('errors.exception.message', ['msg' => $exception->getMessage() ?: trans('errors.http.msg-404')]) }}</p>
2016-07-21 22:01:57 +08:00
@endsection