Does Filament provide a way to let users recover their accounts?

https://filamentphp.com/docs/3.x/panels/users im trying to find a similar feature as jetstream or breeze, where users can easily recover their accounts. is possible in filament too?
3 Replies
RickDB
RickDB13mo ago
#breezy should do the trick. It's not built-in by default
ericmp #2
ericmp #2OP13mo ago
ohhh ill try it out thanks!!! that plugin seems cool, but i think i just needed to enable:
class AdminPanelProvider extends PanelProvider
{
public function panel(Panel $panel): Panel
{
return $panel
->passwordReset()
->emailVerification()
...
class AdminPanelProvider extends PanelProvider
{
public function panel(Panel $panel): Panel
{
return $panel
->passwordReset()
->emailVerification()
...
anyways ill prolly use it in new projects
toeknee
toeknee13mo ago
V3 does allow recovery as you have done 🙂

Did you find this page helpful?