PHPackages                             mulky-sulaiman/fortify-ui-livewire - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Templating &amp; Views](/categories/templating)
4. /
5. mulky-sulaiman/fortify-ui-livewire

ActiveLibrary[Templating &amp; Views](/categories/templating)

mulky-sulaiman/fortify-ui-livewire
==================================

Fortify-driven Laravel UI replacement with Livewire Support

01Blade

Since Mar 3Pushed 1y agoCompare

[ Source](https://github.com/mulky-sulaiman/fortify-ui-livewire)[ Packagist](https://packagist.org/packages/mulky-sulaiman/fortify-ui-livewire)[ RSS](/packages/mulky-sulaiman-fortify-ui-livewire/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

[![](https://github.com/mulky-sulaiman/fortify-ui-livewire/raw/master/fortify-ui-image.png)](https://github.com/mulky-sulaiman/fortify-ui-livewire/raw/master/fortify-ui-image.png)

Introduction
============

[](#introduction)

Note

For Laravel 10 and below, use branch v1.x

**FortifyUILivewire** is an unopinionated authentication starter, powered by [*Laravel Fortify*](https://github.com/laravel/fortify). It is completely unstyled -- on purpose -- and only includes a minimal amount of markup to get your project running quickly. This package can be used to start your project, or you can use the [*FortifyUILivewire Preset Template*](https://github.com/MulkySulaiman/fortify-ui-preset) which allows you to create your own preset that you can install with **FortifyUILivewire**.

### In a nutshell...

[](#in-a-nutshell)

**FortifyUILivewire** automates the base installation and configuration of *Laravel Fortify*, it includes the features that *Laravel Fortify* recommends implementing yourself and it provides the scaffolding for you to build your own UI around it. Hence, Fortify + UI.

---

- [Introduction](#introduction)
    - [In a nutshell...](#in-a-nutshell)
    - [Installation](#installation)
    - [Configuration](#configuration)
    - [Features](#features)
        - [Email Verification](#email-verification)
        - [Password Confirmation](#password-confirmation)
        - [Two-Factor Authentication](#two-factor-authentication)
        - [Update User Password/Profile](#update-user-passwordprofile)
    - [FortifyUILivewire Presets](#fortifyuilivewire-presets)
        - [Community Presets](#community-presets)
    - [License](#license)

Installation
------------

[](#installation)

To get started, you'll need to install **FortifyUILivewire** using Composer. This will install *Laravel Fortify* as well so, please make sure you **do not** have it installed, already.

```
composer require MulkySulaiman/fortify-ui
```

Next, you'll need to run the install command:

```
php artisan fortify:ui
```

This command will publish **FortifyUILivewire's** views, add the `home` route to `web.php` and add the **FortifyUILivewire** service provider to your `app/Providers` directory. This will also publish the service provider and config file for *Laravel Fortify*. Lastly, it will register both service providers in the `app.php` config file, under the providers array.

That's it, you're all setup! For advanced setup and configuration options, keep reading!

Configuration
-------------

[](#configuration)

The **FortifyUILivewire** service provider registers the views for all of the authentication features. If you'd rather **not** include the **FortifyUILivewire** service provider, you can skip generating it by using the `--skip-provider` flag.

```
php artisan fortify:ui --skip-provider
```

Then, you can add this to your `AppServiceProvider` or `FortifyServiceProvider`, in the `boot()` method.

```
Fortify::loginView(function () {
    return view('auth.login');
});

Fortify::registerView(function () {
    return view('auth.register');
});

Fortify::requestPasswordResetLinkView(function () {
    return view('auth.forgot-password');
});

Fortify::resetPasswordView(function ($request) {
    return view('auth.reset-password', ['request' => $request]);
});

// Fortify::verifyEmailView(function () {
//     return view('auth.verify-email');
// });

// Fortify::confirmPasswordView(function () {
//     return view('auth.confirm-password');
// });

// Fortify::twoFactorChallengeView(function () {
//     return view('auth.two-factor-challenge');
// });
```

To register all views at once, you can use this instead:

```
Fortify::viewPrefix('auth.');
```

Now, you should have all of the registered views required by *Laravel Fortify*, including basic layout and home views, as well as optional password confirmation, email verification and two-factor authentication views.

Features
--------

[](#features)

By default, **FortifyUILivewire** is setup to handle the basic authentication functions (Login, Register, Password Reset) provided by *Laravel Fortify*.

### Email Verification

[](#email-verification)

To enable the email verification feature, you'll need to visit the **FortifyUILivewire** service provider and uncomment `Fortify::verifyEmailView()`, to register the view. Then, go to the `fortify.php` config file and make sure `Features::emailVerification()` is uncommented. Next, you'll want to update your `User` model to include the following:

```
use Illuminate\Contracts\Auth\MustVerifyEmail;

class User extends Authenticatable implements MustVerifyEmail
{
    ...
```

This allows you to attach the `verified` middleware to any of your routes, which is handled by the `verify.blade.php` file.

[More info about this can be found here.](https://github.com/laravel/fortify/blob/1.x/README.md#email-verification)

### Password Confirmation

[](#password-confirmation)

To enable the password confirmation feature, you'll need to visit the **FortifyUILivewire** service provider and uncomment `Fortify::confirmPasswordView()`, to register the view. This allows you to attach the `password.confirm` middleware to any of your routes, which is handled by the `password-confirm.blade.php` file.

### Two-Factor Authentication

[](#two-factor-authentication)

To enable the two-factor authentication feature, you'll need to visit the **FortifyUILivewire** service provider and uncomment `Fortify::twoFactorChallengeView()`, to register the view. Then, go to the `fortify.php` config file and make sure `Features::twoFactorAuthentication` is uncommented. Next, you'll want to update your `User` model to include the following:

```
use Laravel\Fortify\TwoFactorAuthenticatable;

class User extends Authenticatable
{
    use HasFactory, Notifiable, TwoFactorAuthenticatable;
    ...
```

That's it! Now, you can log into your application and enable or disable two-factor authentication.

### Update User Password/Profile

[](#update-user-passwordprofile)

To enable the ability to update user passwords and/or profile information, go to the `fortify.php` config file and make sure these features are uncommented:

```
Features::updateProfileInformation(),
Features::updatePasswords(),
```

FortifyUILivewire Presets
-------------------------

[](#fortifyuilivewire-presets)

**FortifyUILivewire** encourges make your own presets, with your favorite frontend libraries and frameworks. To get started, visit the [*FortifyUILivewire Preset Template*](https://github.com/MulkySulaiman/fortify-ui-preset) repository, and click the "Use Template" button.

### Community Presets

[](#community-presets)

Presets for v1.x can be found in that branch.

License
-------

[](#license)

**FortifyUILivewire** is open-sourced software licensed under the [MIT license](LICENSE.md).

###  Health Score

16

—

LowBetter than 5% of packages

Maintenance34

Infrequent updates — may be unmaintained

Popularity1

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity17

Early-stage or recently created project

 Bus Factor1

Top contributor holds 89.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/e33a4eee72c54720f35233195db8ec49566a7376ec79bb64edae59cfb4cd73da?d=identicon)[mulky-sulaiman](/maintainers/mulky-sulaiman)

---

Top Contributors

[![zacksmash](https://avatars.githubusercontent.com/u/6118407?v=4)](https://github.com/zacksmash "zacksmash (70 commits)")[![steks89](https://avatars.githubusercontent.com/u/14171590?v=4)](https://github.com/steks89 "steks89 (2 commits)")[![mulky-sulaiman](https://avatars.githubusercontent.com/u/1304486?v=4)](https://github.com/mulky-sulaiman "mulky-sulaiman (2 commits)")[![syahzul](https://avatars.githubusercontent.com/u/707301?v=4)](https://github.com/syahzul "syahzul (1 commits)")[![roelreijneveld](https://avatars.githubusercontent.com/u/34895541?v=4)](https://github.com/roelreijneveld "roelreijneveld (1 commits)")[![joearcher](https://avatars.githubusercontent.com/u/1125046?v=4)](https://github.com/joearcher "joearcher (1 commits)")[![bistory](https://avatars.githubusercontent.com/u/108102?v=4)](https://github.com/bistory "bistory (1 commits)")

### Embed Badge

![Health badge](/badges/mulky-sulaiman-fortify-ui-livewire/health.svg)

```
[![Health](https://phpackages.com/badges/mulky-sulaiman-fortify-ui-livewire/health.svg)](https://phpackages.com/packages/mulky-sulaiman-fortify-ui-livewire)
```

###  Alternatives

[mustache/mustache

A Mustache implementation in PHP.

3.3k44.6M291](/packages/mustache-mustache)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)[whitecube/nova-flexible-content

Flexible Content &amp; Repeater Fields for Laravel Nova.

8053.0M25](/packages/whitecube-nova-flexible-content)[mopa/bootstrap-bundle

Easy integration of twitters bootstrap into symfony2

7042.9M33](/packages/mopa-bootstrap-bundle)[limenius/react-bundle

Client and Server-side react rendering in a Symfony Bundle

3871.2M](/packages/limenius-react-bundle)[nicmart/string-template

StringTemplate is a very simple string template engine for php. I've written it to have a thing like sprintf, but with named and nested substutions.

2101.7M30](/packages/nicmart-string-template)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
