2016-04-30 23:54:56 +02:00
|
|
|
@extends('emails.master_user')
|
|
|
|
|
|
|
|
@section('markup')
|
2017-01-12 14:12:02 +01:00
|
|
|
@if ($account->emailMarkupEnabled())
|
2016-04-30 23:54:56 +02:00
|
|
|
@include('emails.partials.user_view_action')
|
|
|
|
@endif
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('body')
|
|
|
|
<div>
|
|
|
|
{{ trans('texts.email_salutation', ['name' => $userName]) }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
{{ trans("texts.notification_invoice_payment_failed", ['amount' => $paymentAmount, 'client' => $clientName, 'invoice' => $invoiceNumber]) }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
{{ $payment->gateway_error }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
{{ trans('texts.email_signature') }} <br/>
|
|
|
|
{{ trans('texts.email_from') }}
|
|
|
|
</div>
|
|
|
|
@stop
|