404.blade.php 701 B

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