error.blade.php 702 B

1234567891011121314151617
  1. @extends('_layout')
  2. @section('title', sysConfig('website_name').' - '.trans('error.title'))
  3. @section('layout_css')
  4. <link href="/assets/css/errors.min.css" rel="stylesheet">
  5. @endsection
  6. @section('body_class', 'page-error layout-full')
  7. @section('layout_content')
  8. <div class="page vertical-align text-center" data-animsition-in="fade-in" data-animsition-out="fade-out">
  9. <div class="page-content vertical-align-middle">
  10. <header>
  11. <h1 class="animation-slide-top">{{trans('error.whoops')}}</h1>
  12. </header>
  13. <h3>{{trans('error.report')}}</h3>
  14. <code class="error-advise">{!! $message !!}</code>
  15. </div>
  16. </div>
  17. @endsection