This project demonstrates how to implement Laravel authentication using the traditional Laravel UI package and Bootstrap for styling.
- Laravel 12
- Laravel UI (Bootstrap)
- Blade templates
- PHPUnit for auth tests
- SQLite (portable database)
- 🔐 Login, registration, and email verification
- 🔒 Password reset flow
- 🧪 PHPUnit auth test stubs
- 📜 Simple, server-rendered HTML with Bootstrap 5
git clone https://github.com/dipankar77/laravel-auth-ui-bootstrap.git
cd laravel-auth-ui-bootstrap
composer install
cp .env.example .env
touch database/database.sqlite
php artisan migrate
npm install && npm run dev
php artisan serve
👤 Test User
Create one manually:
php artisan tinker
User::create(['name' => 'Test User', 'email' => 'test@example.com', 'password' => bcrypt('password')]);
📸 Screenshots
Optionally, add screenshots of login, registration, and dashboard views here.
📄 License
MIT – Free to use and modify.
🧰 Part of My Portfolio
See full Laravel portfolio: github.com/dipankar77
---
## 📌 Add to Profile README
In section `1. 🔧 Laravel Backend Projects`, add:
```markdown
| [laravel-auth-ui-bootstrap](https://github.com/dipankar77/laravel-auth-ui-bootstrap) | Laravel UI with Bootstrap-based auth scaffolding and Blade views |