Thanks for the help in advance. I simply want to use the default Laravel localization on the authentication features, to translate labels and buttons into Spanish. This is the way I'm using them, the default way.
public function panel(Panel $panel): Panel{ return $panel // ... ->login() ->registration() ->passwordReset() ->emailVerification() ->emailChangeVerification() ->profile();}
public function panel(Panel $panel): Panel{ return $panel // ... ->login() ->registration() ->passwordReset() ->emailVerification() ->emailChangeVerification() ->profile();}
I understand that it is possible to create a new PHP class to extend the base profile pages and create a customized one, but I don't really need that. I like the way they are made. I just want to translate them into Spanish.
Solution
I'd assume they are already translated for Spanish?!