1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/resources/views/error.blade.php
vidit10 d37fca437d Use "from" address on error pages.
Use "from" address instead of SMTP username on error pages.
2017-05-18 15:12:06 -04:00

20 lines
382 B
PHP

@extends('public.header')
@section('content')
<p>&nbsp;<p>
<p>&nbsp;<p>
<div class="well">
<div class="container" style="min-height:400px">
<h3>{{ trans('texts.error_title') }}...</h3>
<h4>{{ $error }}</h4>
<h4>{{ trans('texts.error_contact_text', ['mailaddress' => env('CONTACT_EMAIL', env('MAIL_FROM_ADDRESS'))]) }}</h4>
</div>
</div>
<p>&nbsp;<p>
<p>&nbsp;<p>
@stop