invoiceninja/resources/views/error.blade.php

20 lines
382 B
PHP
Raw Normal View History

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