PHPackages                             filamerce/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. filamerce/filament-user-profile

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

filamerce/filament-user-profile
===============================

Simple filament user profile.

v1.1.1(1y ago)01.3k↓87.5%MITPHPPHP ^8.2CI passing

Since Feb 28Pushed 1y ago1 watchersCompare

[ Source](https://github.com/filamerce/filament-user-panel)[ Packagist](https://packagist.org/packages/filamerce/filament-user-profile)[ Docs](https://github.com/webard/filament-user-profile)[ RSS](/packages/filamerce-filament-user-profile/feed)WikiDiscussions develop Synced 3d ago

READMEChangelogDependencies (12)Versions (4)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 filamerce/filament-user-panel
```

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

[](#register-plugin)

To register the plugin, use the following code snippet:

```
use Filamerce\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 Filamerce\FilamentUserProfile\Livewire\PersonalInfo;
use Filamerce\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

32

—

LowBetter than 69% of packages

Maintenance41

Moderate activity, may be stable

Popularity17

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

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

Total

3

Last Release

491d ago

### 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 (22 commits)")

---

Tags

filamentphpfilamentphp-pluginlaravellaraveluserprofilefilament

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

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

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

###  Alternatives

[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[codewithdennis/filament-select-tree

The multi-level select field enables you to make single selections from a predefined list of options that are organized into multiple levels or depths.

329530.5k29](/packages/codewithdennis-filament-select-tree)[croustibat/filament-jobs-monitor

Background Jobs monitoring like Horizon for all drivers for FilamentPHP

274327.0k8](/packages/croustibat-filament-jobs-monitor)[stephenjude/filament-debugger

About

104162.2k2](/packages/stephenjude-filament-debugger)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

128192.3k3](/packages/dotswan-filament-map-picker)

PHPackages © 2026

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