403.blade.php 676 B

123456789101112131415161718192021222324252627282930313233
  1. @extends('layouts.base')
  2. @section('title','403')
  3. @section('pageHeader','错误')
  4. @section('pageDesc','没有权限')
  5. @section('content')
  6. <div class="error-page">
  7. <h2 class="headline text-yellow"> 403</h2>
  8. <div class="error-content" style="padding-top: 30px">
  9. <h3><i class="fa fa-warning text-yellow"></i> 没有权限.</h3>
  10. <p>
  11. 没有权限.
  12. 此时你可以返回<a href="/"> 首页 </a> 或者返回 <a href="javascript:go(-1)"> 上一页 </a>.
  13. </p>
  14. </div>
  15. <!-- /.error-content -->
  16. </div>
  17. <!-- /.error-page -->
  18. @endsection
  19. @section('js')
  20. @endsection