van-ons/filament-form-builder

Add a customizable form builder to your Filament admin panel.

Maintainers

Package info

github.com/VanOns/filament-form-builder

pkg:composer/van-ons/filament-form-builder

Transparency log

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v2.4.2 2026-07-31 14:53 UTC

README

Social card of Filament Form Builder

Filament Form Builder

Latest version on GitHub Total downloads GitHub issues License Plumb score

Add a customizable form builder to your Filament admin panel.

Quick start

For Filament version compatibility, see Compatibility.

Installation

Start by installing the package via Composer:

composer require van-ons/filament-form-builder:^2.0

Next, publish and run the migrations:

php artisan vendor:publish --tag=filament-form-builder-migrations
php artisan migrate

Finally, add the plugin to your Filament panel provider:

use Filament\Panel;
use Filament\PanelProvider;
use VanOns\FilamentFormBuilder\FilamentFormBuilderPlugin;

class AdminPanelProvider extends PanelProvider
{
    public function panel(Panel $panel): Panel
    {
        return $panel->plugin(FilamentFormBuilderPlugin::make());
    }
}

Documentation

Please see the documentation for detailed information about installation and usage.

Contributing

Please see Contributing for more information about how you can contribute.

Testing

composer test

Changelog

Please see Changelog for more information about what has changed recently.

Upgrading

Please see Upgrading for more information about how to upgrade.

Security

Please see Security for more information about how we deal with security.

Credits

We would like to thank the following contributors for their contributions to this project:

License

The scripts and documentation in this project are released under the MIT License.

Logo of Van Ons