PHPackages                             madbox-99/filament-form-builder - 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. madbox-99/filament-form-builder

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

madbox-99/filament-form-builder
===============================

Embeddable form builder for Laravel with a Filament v5 admin panel. Drop a JS snippet into any HTML page and collect form submissions through the Filament admin.

v0.4.1(1w ago)0170MITPHPPHP ^8.3

Since Apr 20Pushed 1w agoCompare

[ Source](https://github.com/Cegem-360-Kft/filament-form-builder)[ Packagist](https://packagist.org/packages/madbox-99/filament-form-builder)[ RSS](/packages/madbox-99-filament-form-builder/feed)WikiDiscussions main Synced 1w ago

READMEChangelogDependencies (6)Versions (9)Used By (0)

Filament Form Builder
=====================

[](#filament-form-builder)

Embeddable form builder for Laravel with a [Filament v5](https://filamentphp.com/) admin panel.

Drop a `` tag into any HTML page (WordPress, static site, SPA) and collect form submissions in your Filament admin.

Features
--------

[](#features)

- Filament v5 resources for forms + submissions
- Livewire-powered public form renderer (full page, iframe-friendly embed, or one-liner JS widget)
- Repeater-based field builder in the admin (text, email, phone, number, textarea, select, checkbox, date)
- Per-form submission actions (save to DB, auto-create lead, notify email addresses)
- `FormSubmissionProcessed` event for app-specific side effects (Lead creation, CRM push, Slack notification...)
- Pluggable multi-tenancy — any Eloquent model with a slug column works
- Route-served widget JS with ETag cache busting — no publish step

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

[](#installation)

```
composer require madbox-99/filament-form-builder
php artisan vendor:publish --tag=filament-form-builder-config
php artisan migrate
```

Set your tenant model in `config/filament-form-builder.php`:

```
'tenant_model' => \App\Models\Team::class,
'tenant_foreign_key' => 'team_id',
```

Register the plugin in your Filament panel provider:

```
use Madbox99\FilamentFormBuilder\FilamentFormBuilderPlugin;

public function panel(Panel $panel): Panel
{
    return $panel->plugins([
        FilamentFormBuilderPlugin::make(),
    ]);
}
```

Embed a form
------------

[](#embed-a-form)

From the form edit page, copy one of three snippets:

**JS widget** (recommended — auto-resizes, handles redirects):

```

```

**Iframe**:

```

```

**Direct link**: `https://your-app.test/forms/{slug}`

App-side integrations via event
-------------------------------

[](#app-side-integrations-via-event)

The package dispatches `Madbox99\FilamentFormBuilder\Events\FormSubmissionProcessed`after every successful submission. Listen to create app-specific records:

```
use Madbox99\FilamentFormBuilder\Events\FormSubmissionProcessed;

Event::listen(FormSubmissionProcessed::class, function (FormSubmissionProcessed $event) {
    if ($event->actions->createLeadIfHasEmail && !empty($event->formData['email'])) {
        Lead::create([
            'team_id' => $event->form->team_id,
            'email' => $event->formData['email'],
            // ...
        ]);
    }

    if ($event->actions->notifyEmails !== []) {
        Notification::route('mail', $event->actions->notifyEmails)
            ->notify(new FormSubmissionReceived($event->submission));
    }
});
```

License
-------

[](#license)

MIT

###  Health Score

43

—

FairBetter than 89% of packages

Maintenance98

Actively maintained with recent releases

Popularity15

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity44

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 74.4% 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 ~5 days

Total

8

Last Release

13d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/72586295?v=4)[Zoltán Tamás Szabó](/maintainers/MadBox-99)[@MadBox-99](https://github.com/MadBox-99)

---

Top Contributors

[![MadBox-99](https://avatars.githubusercontent.com/u/72586295?v=4)](https://github.com/MadBox-99 "MadBox-99 (29 commits)")[![ateszdn](https://avatars.githubusercontent.com/u/12910027?v=4)](https://github.com/ateszdn "ateszdn (10 commits)")

---

Tags

laravelwordpresslead generationFormsfilamentfilament-pluginform-builderembeddable

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/madbox-99-filament-form-builder/health.svg)

```
[![Health](https://phpackages.com/badges/madbox-99-filament-form-builder/health.svg)](https://phpackages.com/packages/madbox-99-filament-form-builder)
```

###  Alternatives

[tapp/filament-form-builder

User facing form builder using Filament components

141.9k2](/packages/tapp-filament-form-builder)[raugadh/fila-starter

Laravel Filament Starter.

625.1k](/packages/raugadh-fila-starter)[wsmallnews/filament-nestedset

Filament nestedset tree builder powered by kalnoy/nestedset with Filament v4 and v5 support

196.5k14](/packages/wsmallnews-filament-nestedset)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.2k](/packages/tomshaw-electricgrid)

PHPackages © 2026

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