DEV Community

Cover image for [Laravel 8 Auth with Livewire Jetstream scaffolding] - Step by Step
Robert Look
Robert Look

Posted on

[Laravel 8 Auth with Livewire Jetstream scaffolding] - Step by Step

Today, let's see the post of laravel 8 jetstream auth using livewire. today you can see laravel 8 auth with livewire jetstream. we will help you to give an example of laravel 8 auth with livewire tutorial. I learn simply step by step laravel 8 authentication livewire example. So, let's follow a few steps to create an example of authentication laravel 8 livewire jetstream.

A few days ago laravel 8 released and they provide lots of new updates. laravel 7 was using laravel/ui for auth scaffolding and now laravel 8 introduce jetstream for login, registration, email verification, two-factor authentication, session management, API support, and team management, etc.

....

'features' => [
        Features::registration(),
        Features::resetPasswords(),
        Features::emailVerification(),
        Features::updateProfileInformation(),
        Features::updatePasswords(),
        Features::twoFactorAuthentication(),
    ],
...
Enter fullscreen mode Exit fullscreen mode

[Laravel 8 Auth with Livewire Jetstream scaffolding] - Step by Step

Top comments (0)