This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
memberdb/resources/theme/frontend/metronic/page-500.blade.php

31 lines
861 B
PHP
Raw Normal View History

@extends('layouts.frontend')
@section('page_heading','500: Something Went Wrong')
@section('section')
<div class="main">
<div class="container">
<!-- BEGIN SIDEBAR & CONTENT -->
<div class="row margin-bottom-40">
<!-- BEGIN CONTENT -->
<div class="col-md-12 col-sm-12">
<div class="content-page page-500">
<div class="number">
500
</div>
<div class="details">
<h3>Oops! Something went wrong.</h3>
<p>
We are fixing it!<br>
Please come back in a while.<br>
</p>
</div>
</div>
</div>
<!-- END CONTENT -->
</div>
<!-- END SIDEBAR & CONTENT -->
</div>
</div>
@stop