PHPackages                             necmicolak/filament-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. [Admin Panels](/categories/admin)
4. /
5. necmicolak/filament-profile

ActiveLibrary[Admin Panels](/categories/admin)

necmicolak/filament-profile
===========================

A simple profile page for Filament.

012PHP

Since Jul 20Pushed 2y agoCompare

[ Source](https://github.com/necmicolak/filament-profile)[ Packagist](https://packagist.org/packages/necmicolak/filament-profile)[ RSS](/packages/necmicolak-filament-profile/feed)WikiDiscussions main Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

A simple profile page for Filament.
===================================

[](#a-simple-profile-page-for-filament)

[![Latest Version on Packagist](https://camo.githubusercontent.com/a6bd49999e8967e703e0f3b24b7e8d8a5347a36d0730298920c5c4429c10e68f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7279616e676a6368616e646c65722f66696c616d656e742d70726f66696c652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ryangjchandler/filament-profile)[![GitHub Tests Action Status](https://camo.githubusercontent.com/10a705e40aafa4b40d7716bf4f0753e81dedd0cc3e5f4f512452fad3e71ff123/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f7279616e676a6368616e646c65722f66696c616d656e742d70726f66696c652f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/ryangjchandler/filament-profile/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/f340d8e52ad77e0fb5baeee4fa02e185367c6a4ea6060feb1f5f9686c73dfd0d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f7279616e676a6368616e646c65722f66696c616d656e742d70726f66696c652f436865636b253230262532306669782532307374796c696e673f6c6162656c3d636f64652532307374796c65)](https://github.com/ryangjchandler/filament-profile/actions?query=workflow%3A%22Check+%26+fix+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/886bf02b635a5cb861b7a09ab92aed7b37b7b4b535020c1b3f9d105893aad1cb/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7279616e676a6368616e646c65722f66696c616d656e742d70726f66696c652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ryangjchandler/filament-profile)

This package provides a very simple `Profile` page that allows the current user to manage their name, email address and password inside of Filament.

[![Screenshot of Page](./art/screenshot.png)](./art/screenshot.png)

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

[](#installation)

You can install the package via Composer:

```
composer require ryangjchandler/filament-profile
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="filament-profile-views"
```

Usage
-----

[](#usage)

This package will automatically register the `Profile` page as a Livewire component, but won't automatically add it to Filament. You should add the following line of code to your `config/filament.php` file.

```
    'pages' => [
        // ...
        'register' => [
            // ...
            \RyanChandler\FilamentProfile\Pages\Profile::class
        ],
    ],
```

If you visit your Filament panel now, you'll see a new `Account` navigation group as well as a `Profile` page.

Customising the `Profile` page
------------------------------

[](#customising-the-profile-page)

Since the package **does not** automatically add the `Profile` page to your Filament panel, you are free to extend the page and customise it yourself.

You should first run the following command in your terminal:

```
php artisan filament:page Profile
```

This will create a new `App\Filament\Pages\Profile` class in your project.

You can then update this class to extend the `RyanChandler\FilamentProfile\Pages\Profile` class.

```
namespace App\Filament\Pages;

use RyanChandler\FilamentProfile\Pages\Profile as BaseProfile;

class Profile extends BaseProfile
{
    // ...
}
```

Filament will automatically register your new `Profile` page and you're able to customise it to your liking. You can remove the navigation group, modify the form, etc.

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Ryan Chandler](https://github.com/ryangjchandler)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

15

—

LowBetter than 3% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity22

Early-stage or recently created project

 Bus Factor2

2 contributors hold 50%+ of commits

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/c151b92dbe25b70f0eb814096babed0a14a07d65e383246b516c9f2c2c93c0c2?d=identicon)[necmicolak](/maintainers/necmicolak)

---

Top Contributors

[![ryangjchandler](https://avatars.githubusercontent.com/u/41837763?v=4)](https://github.com/ryangjchandler "ryangjchandler (29 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (12 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (12 commits)")[![necmicolak](https://avatars.githubusercontent.com/u/80575445?v=4)](https://github.com/necmicolak "necmicolak (4 commits)")[![wychoong](https://avatars.githubusercontent.com/u/67364036?v=4)](https://github.com/wychoong "wychoong (3 commits)")[![cobraprojects](https://avatars.githubusercontent.com/u/42706279?v=4)](https://github.com/cobraprojects "cobraprojects (1 commits)")[![shuvroroy](https://avatars.githubusercontent.com/u/21066418?v=4)](https://github.com/shuvroroy "shuvroroy (1 commits)")[![byt3sage](https://avatars.githubusercontent.com/u/61322528?v=4)](https://github.com/byt3sage "byt3sage (1 commits)")

### Embed Badge

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

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

PHPackages © 2026

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