500.blade.php 518 B

1234567891011121314
  1. @extends('errors/layout')
  2. @section('title') 500 Internal Server Error @endsection
  3. @section('content')
  4. <h1><i class="glyphicon glyphicon-fire red"></i> 500 Internal Server Error</h1>
  5. <p class="lead">服务器内部错误!刷新页面如果依然存在该问题请联系管理员,{{ config('tipask.admin_email') }}</p>
  6. <p>
  7. <a href="javascript:document.location.reload(true);" class="btn btn-default btn-lg text-center"><span class="green">再次访问该页面</span></a>
  8. </p>
  9. @endsection