feat:verify email after onboarding flow

This commit is contained in:
hackerESQ
2024-10-25 22:14:36 -05:00
parent 57495d36d8
commit b327059400
@@ -25,6 +25,7 @@ new class extends Component {
$this->validate();
$this->user->password = Hash::make($this->password);
$this->user->email_verified_at = now();
$this->user->save();
Auth::login($this->user, true);