1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/resources/views/error.blade.php

20 lines
382 B
PHP
Raw Normal View History

2015-03-16 22:45:25 +01:00
@extends('public.header')
@section('content')
2016-07-21 14:30:11 +02:00
<p>&nbsp;<p>
<p>&nbsp;<p>
2015-03-16 22:45:25 +01:00
2016-07-21 14:30:11 +02:00
<div class="well">
<div class="container" style="min-height:400px">
2016-07-21 15:04:23 +02:00
<h3>{{ trans('texts.error_title') }}...</h3>
2016-07-21 14:30:11 +02:00
<h4>{{ $error }}</h4>
<h4>{{ trans('texts.error_contact_text', ['mailaddress' => env('CONTACT_EMAIL', env('MAIL_FROM_ADDRESS'))]) }}</h4>
2016-07-21 14:30:11 +02:00
</div>
</div>
2015-03-16 22:45:25 +01:00
2016-07-21 14:30:11 +02:00
<p>&nbsp;<p>
<p>&nbsp;<p>
2015-03-16 22:45:25 +01:00
2016-06-22 11:22:38 +02:00
@stop