phu1237 / laravel-tailwind-auth
Minimal Laravel authentication scaffolding with Blade and Tailwind.
Installs: 1 024
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 2
Language:Blade
Requires
- php: ^8.1.0
- illuminate/console: ^10.0
- illuminate/filesystem: ^10.0
- illuminate/support: ^10.0
- illuminate/validation: ^10.0
README
Introduction
Laravel Tailwind Authentication provides a minimal and simple starting point for building a Laravel application with authentication. Styled with Tailwind, this package publishes authentication controllers and views to your application that can be easily customized based on your own application's needs.
This package is based on laravel/breeze.
This package included:
- Login
- Register
- Forgot password - Reset password
- Verify email
- Confirm password
This package not included:
- Dashboard
Laravel Tailwind Authentication is powered by Blade and Tailwind.
Must read before install:
Please backup or rename your files first to prevent data loss.
You can also run the last command with backup option here.
Getting started
Getting started couldn't be easier:
laravel new my-app
cd my-app
composer require phu1237/laravel-tailwind-auth --dev
php artisan auth:install
Commands
Install package with default files
php artisan auth:install
Options
Install & backup files
php artisan auth:install --backup
# or
php artisan auth:install -b
Install with empty blade files
php artisan auth:install --empty
# or
php artisan auth:install -e
Install with controllers and routes
php artisan auth:install --core
Install with only controllers
php artisan auth:install --controllers
# or
php artisan auth:install -c
Note: You can run "backup" option with any option you want at once, for example:
php artisan auth:install --empty --backup
# or
php artisan auth:install -eb
License
Laravel Tailwind Authentication is open-sourced software licensed under the MIT license.