diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index aac277bb583c..28b310160e89 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -1309,6 +1309,7 @@ $LANG = array( 'warn_start_date_changed' => 'The next invoice will be sent on the new start date.', 'original_start_date' => 'Original start date', 'new_start_date' => 'New start date', + 'security' => 'Security', ); diff --git a/resources/views/accounts/client_portal.blade.php b/resources/views/accounts/client_portal.blade.php index 1df146123fa3..14883901831c 100644 --- a/resources/views/accounts/client_portal.blade.php +++ b/resources/views/accounts/client_portal.blade.php @@ -30,9 +30,10 @@
+
-

{!! trans('texts.client_portal') !!}

+

{!! trans('texts.navigation') !!}

@@ -45,20 +46,29 @@ ->text(trans('texts.enable')) ->help(trans('texts.enable_client_portal_dashboard_help')) !!}
+
+
+ +
+
+

{!! trans('texts.security') !!}

+
+
{!! Former::checkbox('enable_portal_password') - ->text(trans('texts.enable_portal_password')) + ->text(trans('texts.enable')) ->help(trans('texts.enable_portal_password_help')) - ->label(' ') !!} + ->label(trans('texts.enable_portal_password')) !!}
{!! Former::checkbox('send_portal_password') - ->text(trans('texts.send_portal_password')) + ->text(trans('texts.enable')) ->help(trans('texts.send_portal_password_help')) - ->label(' ') !!} + ->label(trans('texts.send_portal_password')) !!}
+ @if (Utils::hasFeature(FEATURE_CLIENT_PORTAL_CSS))