This repository provides a drop-in replacement of Laravel Breeze Blade views written in Bootstrap 5.
Laravel Breeze officially ships with Tailwind CSS only. This project exists to support the Bootstrap community by offering a fully working Breeze UI without modifying any Breeze logic, routes, controllers, or authentication flow.
✅ All Breeze logic remains untouched
✅ Only Blade view files are replaced
✅ Same file names and paths as Breeze
- A complete set of Bootstrap 5 Blade files
- Designed to replace Breeze’s default Tailwind views
- Fully compatible with standard Breeze authentication (login, register, password reset, profile, dashboard)
- Suitable for Laravel 11 and usable with Laravel 12
This repository is not:
- A Breeze fork
- A UI rewrite of Breeze logic
- A new starter kit
/resources/views/layouts/guest.blade.php
/resources/views/layouts/app.blade.php
/resources/views/welcome.blade.php
/resources/views/dashboard.blade.php
/resources/views/auth/*
/resources/views/profile/*
This repository is accompanied by a live demo site showing the blades in action with a standard Breeze installation.
composer create-project laravel/laravel my-projectcomposer require laravel/breeze --dev
php artisan breeze:install- Database connection
- Mail configuration
php artisan migrateCopy the Blade files from this repository into:
/resources/views
Overwrite existing Breeze files.
After copying all blade files run:
php artisan optimize:clear
You may now refresh the browser.
mv resources/views resources/views-breeze- Breeze officially supports Laravel 11 (December 2025)
- On Laravel 12 Breeze installation works but must skip npm commands
- Bootstrap does not require Vite or npm
- Bootstrap is loaded via CDN by default
- You may install local assets if preferred
Laravel removed Bootstrap-based starter kits. This project restores Bootstrap support for Breeze users without touching backend logic.
- Laravel Breeze © Laravel LLC
- Bootstrap © Bootstrap Authors
- Blade replacements © Caribation IT
Free for personal and commercial use.
Pull requests welcome for UI improvements, accessibility fixes, and version compatibility.
Enjoy Laravel Breeze with Bootstrap 5.