diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index 46806092516c..e30795699d54 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -2444,7 +2444,7 @@ $LANG = array( 'enable_alipay' => 'Accept Alipay', 'enable_sofort' => 'Accept EU bank transfers', 'stripe_alipay_help' => 'These gateways also need to be activated in :link.', - + 'gocardless_webhook_help_link_text' => 'add this URL as an endpoint in GoCardless', ); diff --git a/resources/views/accounts/account_gateway.blade.php b/resources/views/accounts/account_gateway.blade.php index 83412512c635..28b345f60983 100644 --- a/resources/views/accounts/account_gateway.blade.php +++ b/resources/views/accounts/account_gateway.blade.php @@ -191,6 +191,16 @@ ->help(trans('texts.plaid_environment_help')) !!} + @elseif (! $accountGateway || $accountGateway->gateway_id == GATEWAY_GOCARDLESS) +
+ +
+ +
{!! trans('texts.stripe_webhook_help', [ + 'link'=>''.trans('texts.gocardless_webhook_help_link_text').'' + ]) !!}
+
+
@elseif ($accountGateway && $accountGateway->gateway_id == GATEWAY_WEPAY) {!! Former::checkbox('enable_ach') ->label(trans('texts.ach'))