PHPackages                             etopian/fortify-ui - 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. etopian/fortify-ui

ActiveLibrary

etopian/fortify-ui
==================

Fortify-driven Laravel UI replacement

1.1.x-dev(2y ago)01MITBlade

Since Jul 18Pushed 2y agoCompare

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

READMEChangelogDependencies (5)Versions (2)Used By (0)

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

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

[](#introduction)

**FortifyUI** 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 [*FortifyUI Preset Template*](https://github.com/zacksmash/fortify-ui-preset) which allows you to create your own preset that you can install with **FortifyUI**.

### In a nutshell...

[](#in-a-nutshell)

**FortifyUI** 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)
    - [FortifyUI Presets](#fortifyui-presets)
        - [Community Presets](#community-presets)
    - [License](#license)

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

[](#installation)

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

```
composer require zacksmash/fortify-ui
```

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

```
php artisan fortify:ui
```

This command will publish **FortifyUI's** views, add the `home` route to `web.php` and add the **FortifyUI** 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 **FortifyUI** service provider registers the views for all of the authentication features. If you'd rather **not** include the **FortifyUI** 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, **FortifyUI** 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 **FortifyUI** 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 **FortifyUI** 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 **FortifyUI** 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(),
```

FortifyUI Presets
-----------------

[](#fortifyui-presets)

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

### Community Presets

[](#community-presets)

Here's a list of presets created by the community:

- [FortifyUIkit](https://github.com/zacksmash/fortify-uikit): Made with the UIkit framework
- [FortifyUITabler](https://github.com/Proxeuse/fortify-tabler): Made with the Tabler dashboard template
- [FortifyBulma](https://github.com/mikeburrelljr/fortify-bulma): Made with the Bulma CSS framework
- [FortifyUITailwind](https://github.com/pradeep3/fortify-ui-tailwindcss): Made with the Tailwind CSS framework
- [FortifySoftUi](https://github.com/akukoder/fortify-soft-ui): Made with the Soft UI Dashboard and Soft UI
- [Fortify Bootstrap](https://github.com/bezner/fortify-ui-bootstrap): Made with the Bootstrap framework
- [FortifyTablerAdmin](https://github.com/akukoder/fortify-tabler-admin): Made with the Tabler dashboard template, with multiple layout provided

If you've created a preset, please open an issue or PR to add it to the list!

License
-------

[](#license)

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

###  Health Score

16

—

LowBetter than 5% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity1

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity29

Early-stage or recently created project

 Bus Factor1

Top contributor holds 90.3% 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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1034d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2536c1d8dfff2644e378f0b6853b8cdc49ba5d033ec04825b9cba39293178db6?d=identicon)[etopian](/maintainers/etopian)

---

Top Contributors

[![zacksmash](https://avatars.githubusercontent.com/u/6118407?v=4)](https://github.com/zacksmash "zacksmash (65 commits)")[![steks89](https://avatars.githubusercontent.com/u/14171590?v=4)](https://github.com/steks89 "steks89 (2 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)")[![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)")[![etopian](https://avatars.githubusercontent.com/u/273319?v=4)](https://github.com/etopian "etopian (1 commits)")

---

Tags

zacksmashfortify-ui

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/etopian-fortify-ui/health.svg)

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

###  Alternatives

[laravel/jetstream

Tailwind scaffolding for the Laravel framework.

4.1k19.8M136](/packages/laravel-jetstream)[zacksmash/fortify-ui

Fortify-driven Laravel UI replacement

24617.0k6](/packages/zacksmash-fortify-ui)

PHPackages © 2026

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