Skip to content

Commit 9393112

Browse files
fix password message reset
1 parent 126bd8d commit 9393112

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/Filament/Resources/UserResource/Actions/ResetPasswordAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ protected function setUp(): void
4242
$response = Password::broker(config('filament-breezy.reset_broker', config('auth.defaults.passwords')))->sendResetLink(['email' => $record->email]);
4343
if ($response === Password::RESET_LINK_SENT) {
4444
Notification::make()
45-
->title(__('filament-breezy::default.reset_password.notification_success'))
45+
->title(__('passwords.reset'))
4646
->success()
4747
->send();
4848

lang/ro/passwords.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
declare(strict_types=1);
44

55
return [
6-
'reset' => 'Parola a fost resetată!',
6+
'reset' => 'Emailul de resetare a parolei a fost trimis cu succes!',
77
'sent' => 'Am trimis un e-mail cu link-ul de resetare a parolei!',
88
'throttled' => 'Vă rugăm să așteptați înainte de a încerca din nou.',
99
'token' => 'Codul de resetare a parolei este greșit.',

0 commit comments

Comments
 (0)