revolution/fortify-uikit

Laravel Fortify views for UIkit3

Installs: 49

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 0

Language:Blade

1.0.4 2020-09-27 11:01 UTC

This package is auto-updated.

Last update: 2024-03-27 18:50:05 UTC


README

Maintainability

https://getuikit.com/

Available views

  • register
  • login
  • forgot-password
  • reset-password

Unavailable

  • verify-email
  • confirm-password
  • 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-uikit

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

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

        //
    }

Publish views

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

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

You can customize any files.

Demo

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

LICENSE

MIT