PHPackages                             webbingbrasil/filament-jetstream-theme - 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. webbingbrasil/filament-jetstream-theme

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

webbingbrasil/filament-jetstream-theme
======================================

A custom theme for Filament inspired in Laravel Jetstream.

v1.5.3(3y ago)221.4k3MITBladePHP ^8.0

Since Feb 2Pushed 3y ago2 watchersCompare

[ Source](https://github.com/webbingbrasil/filament-jetstream-theme)[ Packagist](https://packagist.org/packages/webbingbrasil/filament-jetstream-theme)[ Docs](https://github.com/webbingbrasil/filament-jetstream-theme)[ RSS](/packages/webbingbrasil-filament-jetstream-theme/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (2)Versions (18)Used By (0)

Filament Jetstream Theme
========================

[](#filament-jetstream-theme)

A Jetstream theme for filament admin

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

[](#installation)

```
composer require webbingbrasil/filament-jetstream-theme
```

Optionally, you can publish the config file using:

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

Optionally, you can publish the views using:

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

Password rule
-------------

[](#password-rule)

This theme provides a password rule class, you can use it in any form validation:

```
use Webbingbrasil\FilamentJetstreamTheme\Rules\Password;

Forms\Components\TextInput::make('new_password')
    ->label(__('filament-jetstream::default.fields.new_password'))
    ->password()
    ->rules(Password::make()
            ->requireNumeric()
            ->requireUppercase()
            ->requireSpecialCharacter()
            ->length(8))
```

By default, we provide a configuration property with a predefined password rule: `config('filament-jetstream.password_rules')`, This rule is used on the profile page, to customize publish and update the config file.

Profile page
------------

[](#profile-page)

This theme provides a basic profile page with user information and password update forms, it is registered by default but you can extend and customize the page using two methods.

### Using render hooks

[](#using-render-hooks)

Make use of Filament's render hook to register additional content to profile page.

```
## in Service Provider file
public function boot()
{
    Filament::registerRenderHook(
        'filament-jetstream.profile-page.start',
        fn (): string => Blade::render('@livewire(\'profile-instructions\')'),
    );
    Filament::registerRenderHook(
        'filament-jetstream.profile-page.after-profile-form',
        fn (): string => Blade::render('@livewire(\'extra-forms\')'),
    );
    Filament::registerRenderHook(
        'filament-jetstream.profile-page.end',
        fn (): string => Blade::render('@livewire(\'filament-two-factor-form\')'),
    );
}
```

### Extend profile page class

[](#extend-profile-page-class)

Another way to customize profile page is extending page class.

```
namespace App\Filament\Pages;

use Webbingbrasil\FilamentJetstreamTheme\Pages\Profile as BaseProfile;
use Filament\Forms;

class Profile extends BaseProfile
{

  protected function getProfileFormSchema(): array
    {
        return array_merge(parent::getProfileFormSchema(), [
            Forms\Components\TextInput::make("job_title"),
            Forms\Components\Checkbox::make("marketing_consent")->label(
                "I consent to receive email notifications....."
            ),
        ]);
    }
```

After create you custom page, publish theme config and update `profile_page_class` property

User manage account menu
------------------------

[](#user-manage-account-menu)

To register new items to the user menu, you should use a service provider:

```
use Filament\Facades\Filament;
use Filament\Navigation\UserMenuItem;

Filament::serving(function () {
    Filament::registerUserMenuItems([
        UserMenuItem::make()
            ->label('Settings')
            ->url(route('filament.pages.settings'))
            ->icon('heroicon-s-cog'),
        // ...
    ]);
});
```

Components
----------

[](#components)

You can use a extra component to design you custom pages: ``

Usage example

```

            title

            description

                {{ $this->form }}

```

Screenshots
-----------

[](#screenshots)

[![Screenshot of Login](./images/login.png)](./images/login.png)[![Screenshot of Dashboard](./images/dashboard.png)](./images/dashboard.png)[![Screenshot of User Manage Account Menu](./images/user-manage-account-menu.png)](./images/user-manage-account-menu.png)[![Screenshot of List Page](./images/list-page.png)](./images/list-page.png)[![Screenshot of Form Page](./images/resource-create-page.png)](./images/resource-create-page.png)[![Screenshot of Form Page With Title and Description](./images/resource-create-page-with-title.png)](./images/resource-create-page-with-title.png)

Credits
-------

[](#credits)

- [Danilo Andrade](https://github.com/dmandrade)

License
-------

[](#license)

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

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity28

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 92.3% 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 ~27 days

Recently: every ~37 days

Total

17

Last Release

1133d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/46c152ad4f73337f281add1d284040cf3ce36c8e16987c4668cc213f2bb90826?d=identicon)[dmandrade](/maintainers/dmandrade)

---

Top Contributors

[![dmandrade](https://avatars.githubusercontent.com/u/7275012?v=4)](https://github.com/dmandrade "dmandrade (36 commits)")[![torosegon](https://avatars.githubusercontent.com/u/1849338?v=4)](https://github.com/torosegon "torosegon (3 commits)")

---

Tags

laravelfilamentfilament-jetstream

### Embed Badge

![Health badge](/badges/webbingbrasil-filament-jetstream-theme/health.svg)

```
[![Health](https://phpackages.com/badges/webbingbrasil-filament-jetstream-theme/health.svg)](https://phpackages.com/packages/webbingbrasil-filament-jetstream-theme)
```

###  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)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12247.8k](/packages/jibaymcs-filament-tour)[aymanalhattami/filament-context-menu

context menu (right click menu) for filament

9838.0k](/packages/aymanalhattami-filament-context-menu)[schmeits/filament-character-counter

This is a Filament character counter TextField and Textarea form field for Filament v4 and v5

33184.7k6](/packages/schmeits-filament-character-counter)

PHPackages © 2026

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