PHPackages                             jaga/laravelformbuilder - 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. jaga/laravelformbuilder

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

jaga/laravelformbuilder
=======================

This is a simple laravel form field builder package.

1.0.5(7y ago)017MITPHP

Since May 7Pushed 7y agoCompare

[ Source](https://github.com/jagaroy/laravelformbuilder)[ Packagist](https://packagist.org/packages/jaga/laravelformbuilder)[ RSS](/packages/jaga-laravelformbuilder/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (5)DependenciesVersions (7)Used By (0)

laravelformbuilder
==================

[](#laravelformbuilder)

Introduction
------------

[](#introduction)

This is a simple form builder package. Which has only four types of input: (i) text, (ii)Checkbox, (iii)radio, (iv) dropdown.

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

[](#installation)

### Using Composer

[](#using-composer)

```
composer require jaga/laravelformbuilder
```

Or manually by modifying `composer.json` file:

```
{
    "require": {
        "jaga/laravelformbuilder": "1.0.*"
    }
}
```

And run `composer install`

Then add Service provider to `config/app.php`

```
    'providers' => [
        // ...
        Jaga\LaravelFormBuilder\LaravelFormBuilderServiceProvider::class
    ]
```

And Facade (also in `config/app.php`)

```
    'aliases' => [
        // ...
        'Jforms' => Jaga\LaravelFormBuilder\Facades\Jforms::class
    ]
```

Quick start
-----------

[](#quick-start)

If you have any question, please contact this email `jagabandhu020@gmail.com` and follow [Sample example codes](#sample-example-codes) section.

##### Input tag:

[](#input-tag)

Just use this anywhere in your blade view as follows:

```
@include(“jaga::form_input”, [“data” => $data])

```

Where data is a key value array in the following structure:

```
$data = [
    “id” => “id1”,
    “classes => [“class1”, “class2”, … “classN”],
    “type” => “text”,
    “name” => “name_input”,
    “values” => [
        “prev_value” => “value” //(this is the previous posted value)
    ],
    “required” => true/false
];

```

##### Select tag:

[](#select-tag)

```
@include(“jaga::form_select”, [“data” => $data])

```

Where data is:

```
$data = [
    “id” => “select_id”,
    “classes => [“class1”, “class2”, … “classN”],
    “name” => “name”,
    “values” => [
        “value1” => “value1_name”,
        “value2” => “value2_name”,
        …
         “valueN” => “valueN_name”
    ],
    “active” => “valueX” or “null”,
    “required” => true/false
];

```

In the case of the active value being “null”, a default value has to be generated and put at the top of the options list, otherwise the “active” value is to be placed at the top of the options list.

##### Radio

[](#radio)

```
@include(“jaga::form_radio”, [“data” => $data])

```

Where data is:

```
$data = [
    “classes => [“class1”, “class2”, … “classN”],
    “name” => “name”,
    “values” => [
        “value1” => “value1_name”,
        “value2” => “value2_name”,
        …
         “valueN” => “valueN_name”
    ],
    “active” => “valueX” or “null”
];

```

In the case of the active value not being “null”, the active value has to be selected.

##### Checkbox

[](#checkbox)

```
@include(“jaga::form_checkbox”, [“data” => $data])

```

Where data is:

```
$data = [
    “id” => “id1”,
    “classes => [“class1”, “class2”, … “classN”],
    “name” => “name”,
    “values” => [
        “value1” => “value1_name”,
        “value2” => “value2_name”,
        …
         “valueN” => “valueN_name”
    ]
];

```

### Sample example codes

[](#sample-example-codes)

Use these sample codes in anywhere in your view file:

```

@include('jaga::form_input', ["data"=>$data])

@include('jaga::form_select', ["data"=>$data])

@include('jaga::form_radio', $data)

@include('jaga::form_checkbox', ["data"=>$data])

```

```
Thank you for stay with me.

```

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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 ~0 days

Total

6

Last Release

2611d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/18d6625663c28d412d2403b4ba23f70e964a266f1cc48efca19c1f947619d469?d=identicon)[jagaroy](/maintainers/jagaroy)

---

Top Contributors

[![jagaroy](https://avatars.githubusercontent.com/u/36606000?v=4)](https://github.com/jagaroy "jagaroy (12 commits)")

### Embed Badge

![Health badge](/badges/jaga-laravelformbuilder/health.svg)

```
[![Health](https://phpackages.com/badges/jaga-laravelformbuilder/health.svg)](https://phpackages.com/packages/jaga-laravelformbuilder)
```

###  Alternatives

[williamson/laragram

A Laravel Wrapper for telegram-cli

282.8k](/packages/williamson-laragram)

PHPackages © 2026

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