feat(LRL App): init V0
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'blocked' => [
|
||||
'title' => 'Email address change blocked',
|
||||
'body' => 'You have successfully blocked an email address change attempt to :email. If you did not make the original request, please contact us immediately.',
|
||||
],
|
||||
|
||||
'failed' => [
|
||||
'title' => 'Failed to block email address change',
|
||||
'body' => 'Unfortunately, you were unable to prevent the email address from being changed to :email, since it was already verified before you blocked it. If you did not make the original request, please contact us immediately.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
14
lang/vendor/filament-panels/en/auth/http/controllers/email-change-verification-controller.php
vendored
Normal file
14
lang/vendor/filament-panels/en/auth/http/controllers/email-change-verification-controller.php
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'verified' => [
|
||||
'title' => 'Email address changed',
|
||||
'body' => 'Your email address has been successfully changed to :email.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
71
lang/vendor/filament-panels/en/auth/multi-factor/app/actions/disable.php
vendored
Normal file
71
lang/vendor/filament-panels/en/auth/multi-factor/app/actions/disable.php
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Turn off',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Disable authenticator app',
|
||||
|
||||
'description' => 'Are you sure you want to stop using the authenticator app? Disabling this will remove an extra layer of security from your account.',
|
||||
|
||||
'form' => [
|
||||
|
||||
'code' => [
|
||||
|
||||
'label' => 'Enter the 6-digit code from the authenticator app',
|
||||
|
||||
'validation_attribute' => 'code',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'use_recovery_code' => [
|
||||
'label' => 'Use a recovery code instead',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'recovery_code' => [
|
||||
|
||||
'label' => 'Or, enter a recovery code',
|
||||
|
||||
'validation_attribute' => 'recovery code',
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The recovery code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Disable authenticator app',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'disabled' => [
|
||||
'title' => 'Authenticator app has been disabled',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
77
lang/vendor/filament-panels/en/auth/multi-factor/app/actions/regenerate-recovery-codes.php
vendored
Normal file
77
lang/vendor/filament-panels/en/auth/multi-factor/app/actions/regenerate-recovery-codes.php
vendored
Normal file
@@ -0,0 +1,77 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Regenerate recovery codes',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Regenerate authenticator app recovery codes',
|
||||
|
||||
'description' => 'If you lose your recovery codes, you can regenerate them here. Your old recovery codes will be invalidated immediately.',
|
||||
|
||||
'form' => [
|
||||
|
||||
'code' => [
|
||||
|
||||
'label' => 'Enter the 6-digit code from the authenticator app',
|
||||
|
||||
'validation_attribute' => 'code',
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'password' => [
|
||||
|
||||
'label' => 'Or, enter your current password',
|
||||
|
||||
'validation_attribute' => 'password',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Regenerate recovery codes',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'regenerated' => [
|
||||
'title' => 'New authenticator app recovery codes have been generated',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'show_new_recovery_codes' => [
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'New recovery codes',
|
||||
|
||||
'description' => 'Please save the following recovery codes in a safe place. They will only be shown once, but you\'ll need them if you lose access to your authenticator app:',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Close',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
81
lang/vendor/filament-panels/en/auth/multi-factor/app/actions/set-up.php
vendored
Normal file
81
lang/vendor/filament-panels/en/auth/multi-factor/app/actions/set-up.php
vendored
Normal file
@@ -0,0 +1,81 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Set up',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Set up authenticator app',
|
||||
|
||||
'description' => <<<'BLADE'
|
||||
You'll need an app like Google Authenticator (<x-filament::link href="https://itunes.apple.com/us/app/google-authenticator/id388497605" target="_blank">iOS</x-filament::link>, <x-filament::link href="https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2" target="_blank">Android</x-filament::link>) to complete this process.
|
||||
BLADE,
|
||||
|
||||
'content' => [
|
||||
|
||||
'qr_code' => [
|
||||
|
||||
'instruction' => 'Scan this QR code with your authenticator app:',
|
||||
|
||||
'alt' => 'QR code to scan with an authenticator app',
|
||||
|
||||
],
|
||||
|
||||
'text_code' => [
|
||||
|
||||
'instruction' => 'Or enter this code manually:',
|
||||
|
||||
'messages' => [
|
||||
'copied' => 'Copied',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'recovery_codes' => [
|
||||
|
||||
'instruction' => 'Please save the following recovery codes in a safe place. They will only be shown once, but you\'ll need them if you lose access to your authenticator app:',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'code' => [
|
||||
|
||||
'label' => 'Enter the 6-digit code from the authenticator app',
|
||||
|
||||
'validation_attribute' => 'code',
|
||||
|
||||
'below_content' => 'You will need to enter the 6-digit code from your authenticator app each time you sign in or perform sensitive actions.',
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Enable authenticator app',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'enabled' => [
|
||||
'title' => 'Authenticator app has been enabled',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
64
lang/vendor/filament-panels/en/auth/multi-factor/app/provider.php
vendored
Normal file
64
lang/vendor/filament-panels/en/auth/multi-factor/app/provider.php
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'management_schema' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'label' => 'Authenticator app',
|
||||
|
||||
'below_content' => 'Use a secure app to generate a temporary code for login verification.',
|
||||
|
||||
'messages' => [
|
||||
'enabled' => 'Enabled',
|
||||
'disabled' => 'Disabled',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'login_form' => [
|
||||
|
||||
'label' => 'Use a code from your authenticator app',
|
||||
|
||||
'code' => [
|
||||
|
||||
'label' => 'Enter the 6-digit code from the authenticator app',
|
||||
|
||||
'validation_attribute' => 'code',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'use_recovery_code' => [
|
||||
'label' => 'Use a recovery code instead',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'recovery_code' => [
|
||||
|
||||
'label' => 'Or, enter a recovery code',
|
||||
|
||||
'validation_attribute' => 'recovery code',
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The recovery code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
67
lang/vendor/filament-panels/en/auth/multi-factor/email/actions/disable.php
vendored
Normal file
67
lang/vendor/filament-panels/en/auth/multi-factor/email/actions/disable.php
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Turn off',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Disable email verification codes',
|
||||
|
||||
'description' => 'Are you sure you want to stop receiving email verification codes? Disabling this will remove an extra layer of security from your account.',
|
||||
|
||||
'form' => [
|
||||
|
||||
'code' => [
|
||||
|
||||
'label' => 'Enter the 6-digit code we sent you by email',
|
||||
|
||||
'validation_attribute' => 'code',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend' => [
|
||||
|
||||
'label' => 'Send a new code by email',
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'resent' => [
|
||||
'title' => 'We\'ve sent you a new code by email',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Disable email verification codes',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'disabled' => [
|
||||
'title' => 'Email verification codes have been disabled',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
67
lang/vendor/filament-panels/en/auth/multi-factor/email/actions/set-up.php
vendored
Normal file
67
lang/vendor/filament-panels/en/auth/multi-factor/email/actions/set-up.php
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Set up',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Set up email verification codes',
|
||||
|
||||
'description' => 'You\'ll need to enter the 6-digit code we send you by email each time you sign in or perform sensitive actions. Check your email for a 6-digit code to complete the setup.',
|
||||
|
||||
'form' => [
|
||||
|
||||
'code' => [
|
||||
|
||||
'label' => 'Enter the 6-digit code we sent you by email',
|
||||
|
||||
'validation_attribute' => 'code',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend' => [
|
||||
|
||||
'label' => 'Send a new code by email',
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'resent' => [
|
||||
'title' => 'We\'ve sent you a new code by email',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Enable email verification codes',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'enabled' => [
|
||||
'title' => 'Email verification codes have been enabled',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'subject' => 'Here\'s your sign-in code',
|
||||
|
||||
'lines' => [
|
||||
'Your sign-in code is: :code',
|
||||
'This code will expire in a minute.|This code will expire in :minutes minutes.',
|
||||
],
|
||||
|
||||
];
|
||||
60
lang/vendor/filament-panels/en/auth/multi-factor/email/provider.php
vendored
Normal file
60
lang/vendor/filament-panels/en/auth/multi-factor/email/provider.php
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'management_schema' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'label' => 'Email verification codes',
|
||||
|
||||
'below_content' => 'Receive a temporary code at your email address to verify your identity during login.',
|
||||
|
||||
'messages' => [
|
||||
'enabled' => 'Enabled',
|
||||
'disabled' => 'Disabled',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'login_form' => [
|
||||
|
||||
'label' => 'Send a code to your email',
|
||||
|
||||
'code' => [
|
||||
|
||||
'label' => 'Enter the 6-digit code we sent you by email',
|
||||
|
||||
'validation_attribute' => 'code',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend' => [
|
||||
|
||||
'label' => 'Send a new code by email',
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'resent' => [
|
||||
'title' => 'We\'ve sent you a new code by email',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'invalid' => 'The code you entered is invalid.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Set up two-factor authentication (2FA)',
|
||||
|
||||
'heading' => 'Set up two-factor authentication',
|
||||
|
||||
'subheading' => '2FA adds an extra layer of security to your account by requiring a second form of verification when signing in.',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'continue' => [
|
||||
'label' => 'Continue',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
27
lang/vendor/filament-panels/en/auth/multi-factor/recovery-codes-modal-content.php
vendored
Normal file
27
lang/vendor/filament-panels/en/auth/multi-factor/recovery-codes-modal-content.php
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'Click to',
|
||||
|
||||
'copy' => [
|
||||
'label' => 'copy',
|
||||
],
|
||||
|
||||
'or',
|
||||
|
||||
'download' => [
|
||||
'label' => 'download',
|
||||
],
|
||||
|
||||
'all the codes at once.',
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
'copied' => 'Copied',
|
||||
],
|
||||
|
||||
];
|
||||
16
lang/vendor/filament-panels/en/auth/notifications/notice-of-email-change-request.php
vendored
Normal file
16
lang/vendor/filament-panels/en/auth/notifications/notice-of-email-change-request.php
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'subject' => 'Your email address is being changed',
|
||||
|
||||
'lines' => [
|
||||
'We received a request to change the email address associated with your account. Your password was used to confirm this change.',
|
||||
'Once verified, the new email address on your account will be: :email.',
|
||||
'You can block the change before it is verified by clicking the button below.',
|
||||
'If you did not make this request, please contact us immediately.',
|
||||
],
|
||||
|
||||
'action' => 'Block Email Change',
|
||||
|
||||
];
|
||||
68
lang/vendor/filament-panels/en/auth/pages/edit-profile.php
vendored
Normal file
68
lang/vendor/filament-panels/en/auth/pages/edit-profile.php
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Profile',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Email address',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => 'Name',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'New password',
|
||||
'validation_attribute' => 'password',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Confirm new password',
|
||||
'validation_attribute' => 'password confirmation',
|
||||
],
|
||||
|
||||
'current_password' => [
|
||||
'label' => 'Current password',
|
||||
'below_content' => 'For security, please confirm your password to continue.',
|
||||
'validation_attribute' => 'current password',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Save changes',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multi_factor_authentication' => [
|
||||
'label' => 'Two-factor authentication (2FA)',
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'email_change_verification_sent' => [
|
||||
'title' => 'Email address change request sent',
|
||||
'body' => 'A request to change your email address has been sent to :email. Please check your email to verify the change.',
|
||||
],
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Saved',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Cancel',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
35
lang/vendor/filament-panels/en/auth/pages/email-verification/email-verification-prompt.php
vendored
Normal file
35
lang/vendor/filament-panels/en/auth/pages/email-verification/email-verification-prompt.php
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Verify your email address',
|
||||
|
||||
'heading' => 'Verify your email address',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend_notification' => [
|
||||
'label' => 'Resend it',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
'notification_not_received' => 'Not received the email we sent?',
|
||||
'notification_sent' => 'We\'ve sent an email to :email containing instructions on how to verify your email address.',
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'notification_resent' => [
|
||||
'title' => 'We\'ve resent the email.',
|
||||
],
|
||||
|
||||
'notification_resend_throttled' => [
|
||||
'title' => 'Too many resend attempts',
|
||||
'body' => 'Please try again in :seconds seconds.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
85
lang/vendor/filament-panels/en/auth/pages/login.php
vendored
Normal file
85
lang/vendor/filament-panels/en/auth/pages/login.php
vendored
Normal file
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Login',
|
||||
|
||||
'heading' => 'Sign in',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'before' => 'or',
|
||||
'label' => 'sign up for an account',
|
||||
],
|
||||
|
||||
'request_password_reset' => [
|
||||
'label' => 'Forgot password?',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Email address',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Password',
|
||||
],
|
||||
|
||||
'remember' => [
|
||||
'label' => 'Remember me',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => 'Sign in',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multi_factor' => [
|
||||
|
||||
'heading' => 'Verify your identity',
|
||||
|
||||
'subheading' => 'To continue signing in, you need to verify your identity.',
|
||||
|
||||
'form' => [
|
||||
|
||||
'provider' => [
|
||||
'label' => 'How would you like to verify?',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => 'Confirm sign in',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Too many login attempts',
|
||||
'body' => 'Please try again in :seconds seconds.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
46
lang/vendor/filament-panels/en/auth/pages/password-reset/request-password-reset.php
vendored
Normal file
46
lang/vendor/filament-panels/en/auth/pages/password-reset/request-password-reset.php
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Reset your password',
|
||||
|
||||
'heading' => 'Forgot password?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'label' => 'back to login',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Email address',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'request' => [
|
||||
'label' => 'Send email',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'sent' => [
|
||||
'body' => 'If your account doesn\'t exist, you will not receive the email.',
|
||||
],
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Too many requests',
|
||||
'body' => 'Please try again in :seconds seconds.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
43
lang/vendor/filament-panels/en/auth/pages/password-reset/reset-password.php
vendored
Normal file
43
lang/vendor/filament-panels/en/auth/pages/password-reset/reset-password.php
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Reset your password',
|
||||
|
||||
'heading' => 'Reset your password',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Email address',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Password',
|
||||
'validation_attribute' => 'password',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Confirm password',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Reset password',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Too many reset attempts',
|
||||
'body' => 'Please try again in :seconds seconds.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
56
lang/vendor/filament-panels/en/auth/pages/register.php
vendored
Normal file
56
lang/vendor/filament-panels/en/auth/pages/register.php
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Register',
|
||||
|
||||
'heading' => 'Sign up',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'before' => 'or',
|
||||
'label' => 'sign in to your account',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Email address',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => 'Name',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Password',
|
||||
'validation_attribute' => 'password',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Confirm password',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'label' => 'Sign up',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Too many registration attempts',
|
||||
'body' => 'Please try again in :seconds seconds.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user