2015-03-16 22:45:25 +01:00
|
|
|
@extends('public.header')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<p> <p>
|
|
|
|
<p> <p>
|
|
|
|
|
|
|
|
<div class="well">
|
|
|
|
<div class="container" style="min-height:400px">
|
2015-04-27 14:28:40 +02:00
|
|
|
<h3>Something went wrong...</h3>
|
2015-10-20 19:12:34 +02:00
|
|
|
<h4>{{ $error }}</h4>
|
2015-04-27 14:28:40 +02:00
|
|
|
<h4>If you'd like help please email us at contact@invoiceninja.com.</h4>
|
2015-03-16 22:45:25 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p> <p>
|
|
|
|
<p> <p>
|
|
|
|
|
2015-04-27 14:28:40 +02:00
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
$(function() {
|
|
|
|
var height = $(window).height() - ($('.navbar').height() + $('footer').height() + 200);
|
|
|
|
$('.well').height(Math.max(200, height));
|
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|
2015-03-16 22:45:25 +01:00
|
|
|
|
|
|
|
@stop
|