rafaelmiano/auth-kit

Laravel 12 authentication starter kit using Livewire

Installs: 7

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Language:Blade

pkg:composer/rafaelmiano/auth-kit

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

This package is auto-updated.

Last update: 2025-10-10 01:30:50 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