rafaelmiano/auth-kit

Laravel 12 authentication starter kit using Livewire

v1.0.0 2025-08-31 07:44 UTC

This package is auto-updated.

Last update: 2025-10-01 00:11:02 UTC


README

A simple Laravel Livewire authentication UI kit for quickly scaffolding user auth, dashboard, and profile interfaces.

🧱 Requirements

  • Laravel 12

  • Livewire v3

  • Tailwind CSS v4

  • Vite

  • Alpine.js

📦 Installation

1. Install via Composer

composer require rafaelmiano/auth-kit

2. Publish Assets (Views, Config, Components)

php artisan vendor:publish --tag=authkit

This will publish:

  • Blade views to resources/views/vendor/auth-kit/

  • Livewire components

  • Blade components (sidebar, links, topbar)

  • Layouts (e.g., layouts/dashboard.blade.php)

3. Include Assets in resources/js/app.js

Ensure Alpine.js is installed and imported:

npm install alpinejs

4. Compile Frontend Assets

npm install && npm run dev

Or for production:

npm run build