diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index c00d38f9e6c7..624a472f8ac9 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -1179,7 +1179,9 @@ $LANG = array( 'preview' => 'Preview', 'list_vendors' => 'List Vendors', 'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.', - + 'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.', + 'return_to_app' => 'Return to app', + ); return $LANG; diff --git a/resources/views/accounts/management.blade.php b/resources/views/accounts/management.blade.php index cfb7b6eb28ee..ac57cf737dd6 100644 --- a/resources/views/accounts/management.blade.php +++ b/resources/views/accounts/management.blade.php @@ -128,7 +128,8 @@ @endif {!! Former::select('plan_term') ->addOption(trans('texts.plan_term_yearly'), PLAN_TERM_YEARLY) - ->addOption(trans('texts.plan_term_monthly'), PLAN_TERM_MONTHLY)!!} + ->addOption(trans('texts.plan_term_monthly'), PLAN_TERM_MONTHLY) + ->inlineHelp(trans('texts.enterprise_plan_features')) !!}