fixed user registration issue
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run

This commit is contained in:
Edward Tirado Jr 2025-12-14 13:23:46 -06:00
parent 908d877cfb
commit f5664ce84b
9 changed files with 203 additions and 30 deletions

View file

@ -33,6 +33,7 @@ class RegisterUser extends Component
public function render()
{
return view('pages.auth.register');
return view('pages.auth.register')
->layout('components.layouts.auth');
}
}