This is a basic authentication built with Laravel and Tainwind CSS. It allows users to register and login.
- PHP 8.1 or later
- NodeJS and npm
- PHP extensions according to Laravel.
clone this repository
Change the directory
cd laravel-basic-authenticationInstall the dependencies:
composer installnpm installCreate a new database same as laravelauth then rename the .env.example to .env and run php artisan key:generate
Migrate the database:
php artisan migrateStart the development server:
npm run dev
php artisan serve