2020-04-17 06:30:51 +00:00
|
|
|
@extends('adminlte::layouts.app')
|
2018-05-20 12:53:14 +00:00
|
|
|
|
|
|
|
@section('htmlheader_title')
|
|
|
|
{{ trans('adminlte_lang::message.servererror') }}
|
|
|
|
@endsection
|
2020-04-17 06:30:51 +00:00
|
|
|
@section('page_title')
|
|
|
|
500
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('contentheader_title')
|
|
|
|
{{ trans('adminlte_lang::message.servererror') }}
|
|
|
|
@endsection
|
|
|
|
@section('contentheader_description')
|
|
|
|
{{ trans('adminlte_lang::message.somethingwrong') }}
|
|
|
|
@endsection
|
2018-05-20 12:53:14 +00:00
|
|
|
|
|
|
|
@section('main-content')
|
|
|
|
<div class="error-page">
|
|
|
|
<h2 class="headline text-red">500</h2>
|
|
|
|
<div class="error-content">
|
2020-04-17 06:30:51 +00:00
|
|
|
<h3><i class="fa fa-warning text-red pt-4"></i> Oops! {{ $exception->getMessage() }}</h3>
|
2018-05-20 12:53:14 +00:00
|
|
|
<p>
|
|
|
|
{{ trans('adminlte_lang::message.wewillwork') }}
|
|
|
|
{{ trans('adminlte_lang::message.mainwhile') }} <a href='{{ url('/home') }}'>{{ trans('adminlte_lang::message.returndashboard') }}</a>.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div><!-- /.error-page -->
|
|
|
|
@endsection
|