PHPackages                             happenv-com/filament-user-profile - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. happenv-com/filament-user-profile

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

happenv-com/filament-user-profile
=================================

Simple filament user profile.

2.x-dev(2mo ago)21.3k↑82.5%MITPHPPHP ^8.2CI failing

Since Apr 29Pushed 2mo agoCompare

[ Source](https://github.com/happenv-com/filament-user-profile)[ Packagist](https://packagist.org/packages/happenv-com/filament-user-profile)[ Docs](https://github.com/happenv-com/filament-user-profile)[ RSS](/packages/happenv-com-filament-user-profile/feed)WikiDiscussions 2.x Synced 1w ago

READMEChangelog (1)Dependencies (11)Versions (5)Used By (0)

Filament User Panel
===================

[](#filament-user-panel)

This package draws inspiration from [Filament Breezy](https://github.com/jeffgreco13/filament-breezy) but does not include two-factor authentication (2FA) functionality.

Rather than offering multiple plugin options, this package provides a streamlined approach to extending and replacing components.

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

[](#installation)

To install the package, execute the following command:

```
composer require happenv/filament-user-panel
```

Register Plugin
---------------

[](#register-plugin)

To register the plugin, use the following code snippet:

```
use Happenv\FilamentUserProfile\UserProfilePlugin;

$panel->plugins([
    UserProfilePlugin::make()
]);
```

Options
-------

[](#options)

### Register User Menu Item

[](#register-user-menu-item)

Control whether the plugin should automatically register the user menu item:

```
UserProfilePlugin::make()
    ->registerUserMenu(false);
```

### Custom Profile Page

[](#custom-profile-page)

Replace the entire `ProfilePage` with your custom component:

```
UserProfilePlugin::make()
    ->profilePage(MyProfileComponent::class);
```

### Custom Profile Components

[](#custom-profile-components)

Manage the registered components and their order:

```
use Happenv\FilamentUserProfile\Livewire\PersonalInfo;
use Happenv\FilamentUserProfile\Livewire\UpdatePassword;

UserProfilePlugin::make()
    ->profileComponents([
        'personal_info' => PersonalInfo::class,
        'update_password' => UpdatePassword::class,
    ]);
```

### Replace Profile Component

[](#replace-profile-component)

Replace a specific profile component:

```
use My\Component\PersonalInfo;

UserProfilePlugin::make()
    ->replaceProfileComponent('personal_info', PersonalInfo::class);
```

### Register New Profile Component

[](#register-new-profile-component)

Register a new profile component:

```
use My\Component\SomeComponent;

UserProfilePlugin::make()
    ->registerProfileComponent('some_component', SomeComponent::class);
```

### Remove Profile Component

[](#remove-profile-component)

Remove a specific profile component:

```
use My\Component\SomeComponent;

UserProfilePlugin::make()
    ->removeProfileComponent('personal_info');
```

Laravel Sanctum
---------------

[](#laravel-sanctum)

Laravel Sanctum is automatically detected, and a component to manage Sanctum tokens is displayed in the profile. Control the available abilities with the following code:

```
UserProfilePlugin::make()
    ->sanctumAbilities(['read', 'write']);
```

By default, all tokens are registered with all abilities (`[*]`).

Two-Factor Authentication
-------------------------

[](#two-factor-authentication)

This package is compatible with [stephenjude/filament-two-factor-authentication](https://github.com/stephenjude/filament-two-factor-authentication). Simply register the component as shown below:

```
UserProfilePlugin::make()
    ->registerProfileComponent('2fa', \Stephenjude\FilamentTwoFactorAuthentication\Livewire\TwoFactorAuthentication::class)
```

###  Health Score

40

—

FairBetter than 86% of packages

Maintenance84

Actively maintained with recent releases

Popularity24

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity35

Early-stage or recently created project

 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 ~1 days

Total

4

Last Release

81d ago

Major Versions

1.x-dev → 2.x-dev2026-05-04

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/855788?v=4)[Bartłomiej Gajda](/maintainers/webard)[@webard](https://github.com/webard)

---

Top Contributors

[![webard](https://avatars.githubusercontent.com/u/855788?v=4)](https://github.com/webard "webard (18 commits)")

---

Tags

laraveluserprofilefilament

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/happenv-com-filament-user-profile/health.svg)

```
[![Health](https://phpackages.com/badges/happenv-com-filament-user-profile/health.svg)](https://phpackages.com/packages/happenv-com-filament-user-profile)
```

###  Alternatives

[stephenjude/filament-two-factor-authentication

Filament Two Factor Authentication: Google 2FA + Passkey Authentication

84215.9k9](/packages/stephenjude-filament-two-factor-authentication)[ysfkaya/filament-phone-input

A phone input component for Laravel Filament

3161.3M26](/packages/ysfkaya-filament-phone-input)[marcelweidum/filament-passkeys

Use passkeys in your filamentphp app

6649.5k2](/packages/marcelweidum-filament-passkeys)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.8k](/packages/rawilk-profile-filament-plugin)[backstage/mails

View logged mails and events in a beautiful Filament UI.

16121.5k](/packages/backstage-mails)[stephenjude/filament-feature-flags

Filament implementation of feature flags and segmentation with Laravel Pennant.

123177.8k1](/packages/stephenjude-filament-feature-flags)

PHPackages © 2026

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