Looking to hire Laravel developers? Try LaraJobs

laravel-bootstrap-formbuilder maintained by rokde

Description
Laravel 5 FormBuilder for Blade Engine and the Twitter Bootstrap CSS Framework
Author
Last update
2016/09/07 13:18 (dev-master)
License
Links
Downloads
11 621

Comments
comments powered by Disqus

laravel-bootstrap-formbuilder

Laravel 5.1 FormBuilder for Blade Engine and the Twitter Bootstrap CSS Framework.

Latest Stable Version Latest Unstable Version License Total Downloads

This FormBuilder enhances the Laravel Collective FormBuilder for its use within the Bootstrap CSS Framework.

Installation

$> composer require "rokde/laravel-bootstrap-formbuilder:~0.1"

For Laravel 5.1:

$> composer require "rokde/laravel-bootstrap-formbuilder:~0.0.1"

Then updating:

$> composer update

Next, add your new provider to the providers array of config/app.php:

Rokde\LaravelBootstrap\Html\HtmlServiceProvider::class,

Finally, add two class aliases to the aliases array of config/app.php:

'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,

We use the Facades from Laravel Collective.

Usage

All Bootstrap recommendations for form and input elements are built in, so you do not have to worry about the right classes and tag-soup.

Form Groups

{!! Form::openGroup('name', 'Name') !!}
	{!! Form::text('name') !!}
{!! Form::closeGroup() !!}

Will render:

<div class="form-group"><label for="name">Name</label>
	<input class="form-control" name="name" type="text" id="name">
</div>

Error handling is also included.

Further Resources

Heavily inspired by Easy Bootstrap Forms In Laravel, so the main credits goes to Stidges.

You can read at Laravel Collective another usage examples.