PHPackages                             plokko/formbuilder - 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. plokko/formbuilder

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

plokko/formbuilder
==================

Helper for creating forms in laravel

0.2.1(10y ago)160PHPPHP &gt;=5.4

Since Jan 12Pushed 9y ago1 watchersCompare

[ Source](https://github.com/plokko/FormBuilder)[ Packagist](https://packagist.org/packages/plokko/formbuilder)[ RSS](/packages/plokko-formbuilder/feed)WikiDiscussions master Synced 2mo ago

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

FormBuilder
===========

[](#formbuilder)

Laravel Helper module for creating forms and input fields Version 0.2 Beta

Changelog
---------

[](#changelog)

- 0.2 beta - Rewritten from scratch, not compatible with previus versions

\##Installation

1. Require with composer

```
composer require plokko/formbuilder
```

2. Add the provider and facades in the app config file /config/app.php

```
'providers' => [
    //...
    //FormBuilder//
    plokko\FormBuilder\FormBuilderProvider::class,
    //...
]
//...
'aliases' => [
    //...
    //FormBuilder//
    'FormBuilder'=> plokko\FormBuilder\Facades\FormBuilder::class,
    //...
]
//...
```

\##Use

- create the **FormBuilder** instance First create a new instance of **FormBuilder** in your view with the *make* command and assign it to a variable

```
