@extends('emails.master_user')
@section('markup')
    @if ($account->enable_email_markup)
        @include('emails.partials.user_view_action')
    @endif
@stop
@section('body')
    
        {{ trans('texts.email_salutation', ['name' => $userName]) }}
    
     
    
        {{ trans("texts.notification_invoice_payment_failed", ['amount' => $paymentAmount, 'client' => $clientName, 'invoice' => $invoiceNumber]) }}
    
     
    
        {{ $payment->gateway_error }}
    
     
    
        {{ trans('texts.email_signature') }} 
        {{ trans('texts.email_from') }}
    
@stop