PHPackages                             codesren/breezify - 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. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. codesren/breezify

ActiveLaravel-package[Authentication &amp; Authorization](/categories/authentication)

codesren/breezify
=================

This is a combination of Laravel Breeze UI and Fortify as a backend authentication system

1.0.0(11mo ago)116MITBladePHP ^8.2

Since Jun 19Pushed 11mo agoCompare

[ Source](https://github.com/Renish437/breezify)[ Packagist](https://packagist.org/packages/codesren/breezify)[ RSS](/packages/codesren-breezify/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (3)Versions (2)Used By (0)

Breezify is Laravel Breeze and Fortify Mashup 🌀
===============================================

[](#breezify-is-laravel-breeze-and-fortify-mashup--)

**Breezify** is a Laravel authentication scaffolding package that combines the clean UI approach of **Laravel Breeze** with the powerful backend features of **Laravel Fortify**. It offers out-of-the-box authentication views, profile management, email verification, and two-factor authentication — all ready to go.

> Built and maintained by [Renish Siwakoti](https://github.com/renishsiwakoti)

---

📦 Installation
--------------

[](#-installation)

### 1. Require the Package via Composer

[](#1-require-the-package-via-composer)

```
composer require codesren/breezify:dev-main

```

### 2. Publish the Breezify Assets

[](#2-publish-the-breezify-assets)

```
php artisan vendor:publish --tag=breezify & php artisan install:breezify blade

```

### 3. Register the Fortify Service Provider

[](#3-register-the-fortify-service-provider)

Ensure the following is added to config/app.php:

```
App\Providers\FortifyServiceProvider::class,

```

⚙️ Configuration Enable Fortify Views

In config/fortify.php:

```
'views' => true,

```

### 4. Enable Features in config/fortify.php

[](#4-enable-features-in-configfortifyphp)

```
'features' => [
    Features::registration(),
    Features::resetPasswords(),
    Features::emailVerification(),
    Features::updateProfileInformation(),
    Features::updatePasswords(),
    Features::twoFactorAuthentication([
    'confirmPassword' => true,
    ]),
],

```

### 5. In make sure to have these View in Providers/FortifyServiceProvider.php

[](#5-in-make-sure-to-have-these-view-in-providersfortifyserviceproviderphp)

```
    # Register view
    Fortify::registerView(function () {
        return view('auth.register');
    });
    # Login view
    Fortify::loginView(function () {
        return view('auth.login');
    });
    # Forgot Password view
    Fortify::requestPasswordResetLinkView(function () {
        return view('auth.forgot-password');
    });
    # Reset Password view
    Fortify::resetPasswordView(function (Request $request) {
        return view('auth.reset-password', ['request' => $request]);
    });

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

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

    # Two factor authentication
    Fortify::twoFactorChallengeView(function (Request $request) {
        $recovery = $request->get('recovery',false);
        return view('auth.two-factor-challenge',compact('recovery'));
    });

```

📁 Routes

Make sure to include the published route file in routes/web.php:

```
require __DIR__.'/auth.php';

```

🧑‍💻 User Model Setup

### 6. Ensure your User model uses necessary traits and interfaces:

[](#6-ensure-your-user-model-uses-necessary-traits-and-interfaces)

```
use Laravel\Fortify\TwoFactorAuthenticatable;
use Illuminate\Contracts\Auth\MustVerifyEmail;

class User extends Authenticatable implements MustVerifyEmail
{
    use HasFactory, Notifiable, TwoFactorAuthenticatable;

    protected $fillable = ['name', 'email', 'password'];
}

```

🛡️ Features Included

✅ Registration &amp; Login ✅ Email Verification ✅ Forgot &amp; Reset Password ✅ Profile Update ✅ Password Confirmation ✅ Two-Factor Authentication ✅ Tailwind CSS UI ✅ Vite + PostCSS Ready 🚀 Build Frontend Assets

After publishing:

```
npm install
npm run dev

Ensure you have Node.js, npm, and Vite configured.

```

### 7. 🧪 Run Migrations

[](#7--run-migrations)

```
php artisan migrate

```

🤝 Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. 📧 Support

```
Email: renishsiwakoti437@gmail.com

Issues: GitHub Issues

```

📄 License

The MIT License (MIT). See LICENSE for details.

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance52

Moderate activity, may be stable

Popularity7

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity49

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

Unknown

Total

1

Last Release

333d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/68e178ece4eed9015733c6adccc8744c82344e45dfe44612f580bbe0421c486b?d=identicon)[Renish437](/maintainers/Renish437)

---

Top Contributors

[![Renish437](https://avatars.githubusercontent.com/u/159528633?v=4)](https://github.com/Renish437 "Renish437 (28 commits)")

### Embed Badge

![Health badge](/badges/codesren-breezify/health.svg)

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

PHPackages © 2026

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