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

ActiveLibrary

intothesource/laravel-form-builder
==================================

A laravel form builder

1.0(6y ago)0706↓100%MITPHPPHP &gt;=7.0

Since Jul 26Pushed 6y agoCompare

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

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

Laravel form builder
====================

[](#laravel-form-builder)

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

[](#installation)

Add the following to your composer.json

```
{
  "repositories": [{
    "type": "composer",
    "url": "https://composer.intothesource.com"
  }]
}

```

and install via composer

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

```

### Register Service Provider

[](#register-service-provider)

> Note! This and next step are optional if you use laravel&gt;=5.5 with package auto discovery feature.

Add service provider to `config/app.php` in `providers` section

```
IntoTheSource\LaravelFormBuilder\ServiceProvider::class,
```

### Register Facade

[](#register-facade)

Register package facade in `config/app.php` in `aliases` section

```
'Formbuilder' => IntoTheSource\LaravelFormBuilder\Facades\LaravelFormBuilder::class,
```

Usage
-----

[](#usage)

### Migrate the migrations

[](#migrate-the-migrations)

```
php artisan migrate
```

### Build the form

[](#build-the-form)

```
