Files
faveo/resources/views/errors/500.blade.php
2021-01-28 18:07:18 +05:30

19 lines
973 B
PHP

@extends('themes.default1.client.layout.client')
@section('content')
<div id="page" class="hfeed site">
<article class="hentry error404 text-center" style="margin-left: 300px;">
<h1 class="error-title mb-0">5<i class="fas fa-frown text-info"></i><span class="visible-print text-danger" style="display: none;">0</span><i class="fas fa-frown text-info"></i><span class="visible-print text-danger" style="display: none;">0</span></h1>
<h2 class="entry-title text-muted">{!! Lang::get('lang.sorry_something_went_wrong') !!}</h2>
<div class="entry-content clearfix">
<p class="lead">{!! Lang::get('lang.were_working_on_it_and_well_get_it_fixed_as_soon_as_we_can') !!}</p>
<p><a onclick="goBack()" href="#">{!! Lang::get('lang.go_back') !!}</a></p>
</div><!-- .entry-content -->
</article><!-- .hentry -->
</div><!-- #page -->
<script>
function goBack() {
window.history.back();
}
</script>
@stop