PHPackages                             balajidharma/laravel-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. balajidharma/laravel-form-builder

ActiveLibrary

balajidharma/laravel-form-builder
=================================

Laravel form builder

v1.0.5(1y ago)13.9k↓22.2%1MITPHP

Since Apr 29Pushed 1y ago1 watchersCompare

[ Source](https://github.com/balajidharma/laravel-form-builder)[ Packagist](https://packagist.org/packages/balajidharma/laravel-form-builder)[ RSS](/packages/balajidharma-laravel-form-builder/feed)WikiDiscussions 1.x Synced 1mo ago

READMEChangelog (6)Dependencies (1)Versions (8)Used By (1)

Laravel Form Builder
====================

[](#laravel-form-builder)

### Form Builder to your Laravel projects.

[](#form-builder-to-your-laravel-projects)

[![Total Downloads](https://camo.githubusercontent.com/5e35e6d0176d93edcddcb4481825772d34063108164fcfced9ebc4d27f7cb576/68747470733a2f2f706f7365722e707567782e6f72672f62616c616a69646861726d612f6c61726176656c2d666f726d2d6275696c6465722f646f776e6c6f616473)](https://packagist.org/packages/balajidharma/laravel-form-builder)[![Latest Stable Version](https://camo.githubusercontent.com/04e43a18d1af5bb692e425561b69470d5344e4ee7cff66f5716bf0f23503a490/68747470733a2f2f706f7365722e707567782e6f72672f62616c616a69646861726d612f6c61726176656c2d666f726d2d6275696c6465722f762f737461626c65)](https://packagist.org/packages/balajidharma/laravel-form-builder)[![License](https://camo.githubusercontent.com/46c557f3ea5f01a8e05dd2933b0fc89eca60d600daf033c306ce731e71db8fea/68747470733a2f2f706f7365722e707567782e6f72672f62616c616a69646861726d612f6c61726176656c2d666f726d2d6275696c6465722f6c6963656e7365)](https://packagist.org/packages/balajidharma/laravel-form-builder)

Laravel Form Builder
====================

[](#laravel-form-builder-1)

Laravel Form builder is forked from [kristijanhusak/laravel-form-builder](https://github.com/kristijanhusak/laravel-form-builder).

Table of Contents
-----------------

[](#table-of-contents)

- [Installation](#installation)
- [Demo](#demo)
- [Quick start](#quick-start)

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

[](#installation)

### Using Composer

[](#using-composer)

```
composer require balajidharma/laravel-form-builder
```

Or manually by modifying `composer.json` file:

```
{
    "require": {
        "balajidharma/laravel-form-builder": "1.*"
    }
}
```

And run `composer install`

Demo
----

[](#demo)

The "[Basic Laravel Admin Penel](https://github.com/balajidharma/basic-laravel-admin-panel)" starter kit come with Laravel Form Builder

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

[](#quick-start)

Creating form classes is easy. With a simple artisan command:

```
php artisan make:form Forms/SongForm --fields="name:text, lyrics:textarea, publish:checkbox"
```

Form is created in path `app/Forms/SongForm.php` with content:

```
