phu1237/laravel-tailwind-auth

Minimal Laravel authentication scaffolding with Blade and Tailwind.


Keywords
auth, laravel, tailwind, authentication, laravel-tailwind-authentication
License
MIT

Documentation

Laravel Tailwind Authentication

Banner

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.