Authentication 🔐
Northon Iserhardt
Posted on December 28, 2023
Authentication
Let's access the authentication tab in the documentation: https://laravel.com/docs/10.x/authentication which will instruct us to use a starter kit, as we can see below:
The main starter kit to be mentioned is Laravel Breeze which has several features including Tailwind CSS for our frontend, so let's use it https://laravel.com/docs/10.x/starter-kits#laravel-breeze-installation:
composer require laravel/breeze --dev
php artisan breeze:install
To this project we're gonna choose this Livewire version:
And then we're gonna choose PHPUnit for future unit tests:
php artisan migrate
npm install
npm run dev
Now we have 2 new links, let's register and log in:
So we have finished registration, login and password reset functionalities:
Posted on December 28, 2023
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.