revolution/fortify-bulma

Laravel Fortify views for Bulma

Installs: 27

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 0

Language:Blade

1.0.4 2020-09-27 11:02 UTC

This package is auto-updated.

Last update: 2024-04-27 19:39:45 UTC


README

Maintainability

https://bulma.io/

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

composer require revolution/fortify-bulma

Add Fortify::viewPrefix('fortify-bulma::'); to FortifyServiceProvider@boot

    public function boot()
    {
        Fortify::viewPrefix('fortify-bulma::');

        //
    }

Publish views

php artisan vendor:publish --tag=fortify-bulma

Publish to /resources/views/vendor/fortify-bulma

You can customize any files.

Demo

https://github.com/kawax/fortify-project/tree/bulma

LICENSE

MIT