| 1234567891011121314 |
- <!DOCTYPE html>
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>404,您访问的页面已经不存在!</title>
- </head>
- <body>
- <div style="display: flex;align-items: center;justify-content: center;margin-top: 50px">
- <img src="{{url('icon/404.png')}}">
- <h2>@if($error) {{$error}} @else您访问的页面不见了!您访问的页面不见了!@endif</h2>
- <a href="{{url('/')}}">
- <button style="background: red;width: 100px;height: 50px;position:
- relative;top:50px;left:-200px;border-radius:5px;color:white;font-size: 20px ">去首页</button>
- </a>
- </div>
- </body></html>
|