Need to have an API to expose the user to login and register.
Will be using the Laravel Fortify for the Authentication, so it will be a front-end agnostic implementation of all authentication features.
It provides all routes and controllers needed to implement your authentication logic but requires you to code the user interface yourself. There are no views out of the box!
❌ No views, no user interface
✅ Registration
✅ Login
✅ Profile Management
✅ Password Reset
✅ Email Verification
✅ Two-Factor Authentication (2FA)
✅ Teams Management
✅ Browser Sessions Management (let users see where they’re connected and logout sessions)
✅ API Tokens & Permissions (let users generate API tokens)
Need to have an API to expose the user to login and register.
Will be using the Laravel Fortify for the Authentication, so it will be a front-end agnostic implementation of all authentication features.
It provides all routes and controllers needed to implement your authentication logic but requires you to code the user interface yourself. There are no views out of the box!
❌ No views, no user interface ✅ Registration ✅ Login ✅ Profile Management ✅ Password Reset ✅ Email Verification ✅ Two-Factor Authentication (2FA) ✅ Teams Management ✅ Browser Sessions Management (let users see where they’re connected and logout sessions) ✅ API Tokens & Permissions (let users generate API tokens)