invoiceninja/resources/views/error.blade.php

20 lines
424 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>
2015-03-17 07:45:25 +10:00
<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('MAIL_USERNAME')]) }}</h4>
</div>
</div>
2015-03-17 07:45:25 +10:00
<p>&nbsp;<p>
<p>&nbsp;<p>
2015-03-17 07:45:25 +10:00
2016-06-22 12:22:38 +03:00
@stop