PHPackages                             ryangjchandler/filament-user-resource - 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. ryangjchandler/filament-user-resource

ActiveLibrary[Admin Panels](/categories/admin)

ryangjchandler/filament-user-resource
=====================================

A simple resource for managing users in Filament.

v0.3.0(3y ago)147056[1 issues](https://github.com/ryangjchandler/filament-user-resource/issues)[5 PRs](https://github.com/ryangjchandler/filament-user-resource/pulls)MITPHPPHP ^8.1

Since May 1Pushed 2y ago1 watchersCompare

[ Source](https://github.com/ryangjchandler/filament-user-resource)[ Packagist](https://packagist.org/packages/ryangjchandler/filament-user-resource)[ Docs](https://github.com/ryangjchandler/filament-user-resource)[ GitHub Sponsors](https://github.com/ryangjchandler)[ RSS](/packages/ryangjchandler-filament-user-resource/feed)WikiDiscussions main Synced today

READMEChangelog (3)Dependencies (13)Versions (7)Used By (0)

A simple resource for managing users in Filament.
=================================================

[](#a-simple-resource-for-managing-users-in-filament)

[![Latest Version on Packagist](https://camo.githubusercontent.com/3015e5193e204cf623d4b28a3aa178f6cf1809f525514e5b3e2d46455f4fcc79/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7279616e676a6368616e646c65722f66696c616d656e742d757365722d7265736f757263652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ryangjchandler/filament-user-resource)[![GitHub Tests Action Status](https://camo.githubusercontent.com/cdd121598e4226ab53647f6078a331fc72754b050d2f77d50c7de2fe4dcef8dc/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f7279616e676a6368616e646c65722f66696c616d656e742d757365722d7265736f757263652f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/ryangjchandler/filament-user-resource/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/97e6c01097d7dc7c6e4dbf96b3fd86a0816380416593e08bca149b18d3ce6cd9/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f7279616e676a6368616e646c65722f66696c616d656e742d757365722d7265736f757263652f436865636b253230262532306669782532307374796c696e673f6c6162656c3d636f64652532307374796c65)](https://github.com/ryangjchandler/filament-user-resource/actions?query=workflow%3A%22Check+%26+fix+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/a31de48b740cbe9882a0208860405329cf2194708bf2869db6949332a11db6ec/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7279616e676a6368616e646c65722f66696c616d656e742d757365722d7265736f757263652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ryangjchandler/filament-user-resource)

This package provides a `UserResource` class that lets you create and update `User` models from Filament. This is designed to work with Laravel's default `User` model.

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

[](#installation)

You can install the package via Composer:

```
composer require ryangjchandler/filament-user-resource
```

You can publish the config file with:

```
php artisan vendor:publish --tag="filament-user-resource-config"
```

Usage
-----

[](#usage)

The `UserResource` class is automatically registered with Filament so there's very little setup.

### Enabling password changes

[](#enabling-password-changes)

By default, the password for a `User` **can't** be updated from Filament. This is a personal preference, but can be enabled by calling `UserResource::enablePasswordUpdates()` inside of a service provider.

```
use RyanChandler\FilamentUserResources\Resources\UserResource;

public function boot()
{
    UserResource::enablePasswordUpdates();
}
```

You can also provide a callback function to this method to conditionally enable password updates, e.g. allowing administrators to update passwords but not other users.

```
use RyanChandler\FilamentUserResources\Resources\UserResource;

public function boot()
{
    UserResource::enablePasswordUpdates(function (): bool {
        return auth()->user()->role === Role::Admin;
    });
}
```

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

29

—

LowBetter than 57% of packages

Maintenance19

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 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.

###  Release Activity

Cadence

Every ~175 days

Total

3

Last Release

1174d ago

PHP version history (2 changes)v0.1.0PHP ^8.0

v0.3.0PHP ^8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/568d485d441c691b0358b9091254a6a671fef8f76b73f28af1180ad568d142b2?d=identicon)[ryangjchandler](/maintainers/ryangjchandler)

---

Top Contributors

[![ryangjchandler](https://avatars.githubusercontent.com/u/41837763?v=4)](https://github.com/ryangjchandler "ryangjchandler (12 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (7 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (7 commits)")

---

Tags

laravelryangjchandlerfilament-user-resource

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/ryangjchandler-filament-user-resource/health.svg)

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

###  Alternatives

[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[spatie/laravel-pdf

Create PDFs in Laravel apps

1.0k4.8M47](/packages/spatie-laravel-pdf)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[stephenjude/filament-debugger

About

104162.2k2](/packages/stephenjude-filament-debugger)[croustibat/filament-jobs-monitor

Background Jobs monitoring like Horizon for all drivers for FilamentPHP

274326.6k8](/packages/croustibat-filament-jobs-monitor)[guava/filament-knowledge-base

A filament plugin that adds a knowledge base and help to your filament panel(s).

209151.3k2](/packages/guava-filament-knowledge-base)

PHPackages © 2026

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