error.blade.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  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. @section('meta')
  8. @show
  9. <title>@yield('code') error</title>
  10. <!-- Fonts -->
  11. <link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css">
  12. <!-- Styles -->
  13. <style>
  14. html, body {
  15. background-color: #fff;
  16. color: #636b6f;
  17. font-family: 'Raleway', sans-serif;
  18. font-weight: 100;
  19. height: 100vh;
  20. margin: 0;
  21. }
  22. .full-height {
  23. height: 100vh;
  24. }
  25. .flex-center {
  26. align-items: center;
  27. display: flex;
  28. justify-content: center;
  29. }
  30. .position-ref {
  31. position: relative;
  32. }
  33. .content {
  34. text-align: center;
  35. font-family: "Microsoft YaHei";
  36. }
  37. .title {
  38. font-size: 84px;
  39. }
  40. .m-b-md {
  41. margin-bottom: 30px;
  42. }
  43. a {
  44. color: blue;
  45. text-decoration: none;
  46. }
  47. </style>
  48. </head>
  49. <body>
  50. <div class="flex-center position-ref full-height">
  51. <div class="content">
  52. <div class="title m-b-md">
  53. @yield('code') error
  54. </div>
  55. @yield('text','错误描述内容')
  56. </div>
  57. </div>
  58. </body>
  59. </html>