diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index 47d2c10b70e1..df0daa97fc82 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -2416,7 +2416,7 @@ $LANG = array( 'online_payment_surcharge' => 'Online Payment Surcharge', 'gateway_fees' => 'Gateway Fees', 'fees_disabled' => 'Fees are disabled', - 'gateway_fees_help' => 'Automatically add an online payment surcharge.', + 'gateway_fees_help' => 'Automatically add an online payment surcharge/discount.', 'gateway' => 'Gateway', 'gateway_fee_change_warning' => 'If there are unpaid invoices with fees they need to be updated manually.', 'fees_surcharge_help' => 'Customize surcharge :link.', diff --git a/resources/views/accounts/payments.blade.php b/resources/views/accounts/payments.blade.php index ce1a0f8393f3..289f39543698 100644 --- a/resources/views/accounts/payments.blade.php +++ b/resources/views/accounts/payments.blade.php @@ -18,13 +18,13 @@ {!! Former::select('token_billing_type_id') ->options($tokenBillingOptions) ->help(trans('texts.token_billing_help')) !!} + {!! Former::inline_radios('auto_bill_on_due_date') ->label(trans('texts.auto_bill')) ->radios([ trans('texts.on_send_date') => ['value'=>0, 'name'=>'auto_bill_on_due_date'], trans('texts.on_due_date') => ['value'=>1, 'name'=>'auto_bill_on_due_date'], ])->help(trans('texts.auto_bill_ach_date_help')) !!} -
{!! Former::checkbox('gateway_fee_location') ->onchange('onGatewayFeeChange()')