From 16468704315a25ecf5cd137e75bbe97f884a7837 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Mon, 5 Dec 2016 22:02:23 +0200 Subject: [PATCH] Added link to error if email is not confirmed --- resources/lang/en/texts.php | 2 +- resources/views/partials/upgrade_modal.blade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index 8e5b24d4def2..84a37d423224 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -200,7 +200,7 @@ $LANG = array( 'limit_clients' => 'Sorry, this will exceed the limit of :count clients', 'payment_error' => 'There was an error processing your payment. Please try again later.', 'registration_required' => 'Please sign up to email an invoice', - 'confirmation_required' => 'Please confirm your email address', + 'confirmation_required' => 'Please confirm your email address, click here to resend the confirmation email.', 'updated_client' => 'Successfully updated client', 'created_client' => 'Successfully created client', 'archived_client' => 'Successfully archived client', diff --git a/resources/views/partials/upgrade_modal.blade.php b/resources/views/partials/upgrade_modal.blade.php index 1f64a57c3772..ea9af3cd323c 100644 --- a/resources/views/partials/upgrade_modal.blade.php +++ b/resources/views/partials/upgrade_modal.blade.php @@ -178,7 +178,7 @@ function showUpgradeModal() { @if ( ! Auth::check() || ! Auth::user()->confirmed) - swal("{{ trans('texts.confirmation_required') }}"); + swal("{!! trans('texts.confirmation_required') !!}"); return; @endif