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.0k↓31.3%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 1mo 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

33

—

LowBetter than 75% of packages

Maintenance44

Moderate activity, may be stable

Popularity19

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity52

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

445d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e34f6439ff69a5e372136c97bf9166d48010bfa7dd29af729e8a6db98d58335d?d=identicon)[webard](/maintainers/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

[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[dotswan/filament-map-picker

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

124139.3k2](/packages/dotswan-filament-map-picker)[creagia/filament-code-field

A Filamentphp input field to edit or view code data.

58289.3k3](/packages/creagia-filament-code-field)[swisnl/filament-backgrounds

Beautiful backgrounds for Filament auth pages

54149.2k6](/packages/swisnl-filament-backgrounds)[guava/calendar

Adds support for vkurko/calendar to Filament PHP.

298241.0k3](/packages/guava-calendar)[tapp/filament-google-autocomplete-field

Filament plugin that provides a Google Autocomplete field

3098.1k](/packages/tapp-filament-google-autocomplete-field)

PHPackages © 2026

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