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

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

codewiser/fortify
=================

Blade templates for Laravel Fortify

v1.1.1(1mo ago)1821MITBladePHP ^8.2

Since Sep 24Pushed 1mo agoCompare

[ Source](https://github.com/C0deWiser/fortify)[ Packagist](https://packagist.org/packages/codewiser/fortify)[ RSS](/packages/codewiser-fortify/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (6)Versions (14)Used By (0)

Fortify user forms scaffolding
==============================

[](#fortify-user-forms-scaffolding)

As we know, [Laravel Fortify](https://laravel.com/docs/12.x/fortify)provides all the backend authentication logic. And missing all user forms. We need to develop it ourselves.

Every time I install Fortify, I create the same user forms... And... why not to create it once?

This package provides blade templates for every view, described by Fortify.

Install Fortify (this package already requires `laravel/fortify`) and publish resources.

```
composer require codewiser/fortify

php artisan fortify:install
php artisan vendor:publish --tag=fortify
```

Next, setup views in `FortifyServiceProvider` class.

```
use Illuminate\Support\ServiceProvider;
use Laravel\Fortify\Fortify;

class FortifyServiceProvider extends ServiceProvider
{
    /**
     * Bootstrap any application services.
     */
    public function boot(): void
    {
        Fortify::loginView(fn() => view('auth.login'));
        Fortify::registerView(fn() => view('auth.register'));
        Fortify::verifyEmailView(fn() => view('auth.verify-email'));
        Fortify::confirmPasswordView(fn() => view('auth.confirm-password'));
        Fortify::twoFactorChallengeView(fn() => view('auth.two-factor-challenge'));
        Fortify::requestPasswordResetLinkView(fn() => view('auth.forgot-password'));
        Fortify::resetPasswordView(fn(Request $request) => view('auth.reset-password', [
            'request' => $request
        ]));
    }
}
```

Finally, customize blades in `resources/views/auth` however you like.

### Additional routes

[](#additional-routes)

Package provides few additional user pages: profile information, password update, two-factor setup and passkeys manager.

These routes are available if relevant Fortify features have been enabled.

Route nameAllows user...`user-profile-information.show`to change name and email`user-password.show`to update password`two-factor.show`to setup two factor authorization`passkey.index`to list passkeysYou may add this routes to a user menu.

###  Health Score

45

—

FairBetter than 91% of packages

Maintenance90

Actively maintained with recent releases

Popularity15

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

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

Every ~19 days

Recently: every ~46 days

Total

13

Last Release

51d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1220316?v=4)[Michael Michaelson](/maintainers/Cellard)[@Cellard](https://github.com/Cellard)

---

Top Contributors

[![Cellard](https://avatars.githubusercontent.com/u/1220316?v=4)](https://github.com/Cellard "Cellard (22 commits)")

---

Tags

blade-templatefortifylaravel

### Embed Badge

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

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

###  Alternatives

[laravel/jetstream

Tailwind scaffolding for the Laravel framework.

4.1k21.8M155](/packages/laravel-jetstream)[nunomaduro/laravel-starter-kit-inertia-react

The skeleton application for the Laravel framework.

2071.1k](/packages/nunomaduro-laravel-starter-kit-inertia-react)[tomatophp/tomato-admin

Tomato Admin Dashboard Build With FilamentPHP Theme for Laravel Splade

578.7k60](/packages/tomatophp-tomato-admin)

PHPackages © 2026

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