revolution / fortify-bootstrap4
Laravel Fortify views for Bootstrap4
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 0
Language:Blade
Requires
- php: ^7.3||^8.0
- illuminate/support: ^8.0
- laravel/fortify: ^1.5
This package is auto-updated.
Last update: 2024-05-18 01:13:50 UTC
README
Almost the same as laravel/ui
views.
Available views
- register
- login
- forgot-password
- reset-password
- verify-email
- confirm-password
Unavailable
- two-factor-challenge
This is an experimental package so not all views are available.
Requirements
- PHP >= 7.3
- Laravel >= 8.0
- Fortify >= 1.5
Installation
Before install this package, you should install laravel/fortify
(without Jetstream)
https://github.com/laravel/fortify
composer require laravel/fortify
php artisan vendor:publish --provider="Laravel\Fortify\FortifyServiceProvider"
php artisan migrate
Add App\Providers\FortifyServiceProvider::class,
to config/app.php
Next,
composer require revolution/fortify-bootstrap4
Add Fortify::viewPrefix('fortify-bootstrap4::');
to FortifyServiceProvider@boot
public function boot() { Fortify::viewPrefix('fortify-bootstrap4::'); // }
Publish views
php artisan vendor:publish --tag=fortify-bootstrap4
Publish to /resources/views/vendor/fortify-bootstrap4
You can customize any files.
Demo
https://github.com/kawax/fortify-project/tree/bootstrap4
LICENSE
MIT