error.blade.php 477 B

123456789101112131415
  1. @extends('errors/layout')
  2. @section('title') 错误提示 @endsection
  3. @section('content')
  4. <h1><i class="fa fa-exclamation-triangle orange"></i> 抱歉,出错了!</h1>
  5. <p class="lead">{{ $message }}</p>
  6. <p>
  7. <a class="btn btn-default btn-lg" href="{{ route('website.index') }}"><span class="green">访问首页</span></a>
  8. <a class="btn btn-default btn-lg" href="{{ $url }}"><span class="green">返回上一级</span></a>
  9. </p>
  10. @endsection