invoiceninja/resources/views/error.blade.php

28 lines
534 B
PHP
Raw Normal View History

2015-03-17 07:45:25 +10:00
@extends('public.header')
@section('content')
<p>&nbsp;<p>
<p>&nbsp;<p>
<div class="well">
<div class="container" style="min-height:400px">
2015-04-27 15:28:40 +03:00
<h3>Something went wrong...</h3>
2015-10-20 20:12:34 +03:00
<h4>{{ $error }}</h4>
2015-12-31 13:31:50 +02:00
<h4>If you'd like help please email us at {{ env('MAIL_USERNAME') }}.</h4>
2015-03-17 07:45:25 +10:00
</div>
</div>
<p>&nbsp;<p>
<p>&nbsp;<p>
2015-04-27 15:28:40 +03:00
<script type="text/javascript">
$(function() {
var height = $(window).height() - ($('.navbar').height() + $('footer').height() + 200);
$('.well').height(Math.max(200, height));
});
</script>
2015-03-17 07:45:25 +10:00
@stop