404.blade.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <title>Service Unavailable</title>
  8. <!-- Fonts -->
  9. <link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css">
  10. <!-- Styles -->
  11. <style>
  12. html, body {
  13. background-color: #fff;
  14. color: #636b6f;
  15. font-family: 'Raleway', sans-serif;
  16. font-weight: 100;
  17. height: 100vh;
  18. margin: 0;
  19. }
  20. .full-height {
  21. height: 100vh;
  22. }
  23. .flex-center {
  24. align-items: center;
  25. display: flex;
  26. justify-content: center;
  27. }
  28. .position-ref {
  29. position: relative;
  30. }
  31. .content {
  32. text-align: center;
  33. }
  34. .title {
  35. font-size: 84px;
  36. }
  37. </style>
  38. </head>
  39. <body>
  40. <div class="flex-center position-ref full-height">
  41. <div class="content">
  42. <div class="title error404">
  43. Ooops, we cannot find what you are looking for. Please try again.
  44. </div>
  45. <a href="{{ route('home') }}" class="btn btn-default">Go back</a>
  46. </div>
  47. </div>
  48. </body>
  49. </html>