Package Data | |
---|---|
Maintainer Username: | netojose |
Maintainer Contact: | sputinykster@gmail.com (José Sousa) |
Package Create Date: | 2018-02-12 |
Package Last Update: | 2023-04-02 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-01-24 15:04:20 |
Package Statistics | |
---|---|
Total Downloads: | 94,508 |
Monthly Downloads: | 1,202 |
Daily Downloads: | 80 |
Total Stars: | 183 |
Total Watchers: | 13 |
Total Forks: | 58 |
Total Open Issues: | 29 |
This is a package for creating Bootstrap 4 styled form elements in Laravel 5.
<div class="form-group">
<label for="username">Username</label>
<input
type="text"
class="form-control @if($errors->has('username')) is-invalid @endif "
id="username"
value="{{old('username', $username)}}"
/>
@if($errors->has('username'))
<div class="invalid-feedback">{{$errors->first('username')}}</div>
@endif
</div>
Form::text('username', 'Username')
composer require netojose/laravel-bootstrap-4-forms
If you is using Laravel 5.5, the auto discovery feature will make everything for you and your job is done, you can start using now. Else, follow the steps below to install.
'providers' => [
//...
NetoJose\Bootstrap4Forms\Bootstrap4FormsServiceProvider::class,
],
'aliases' => [
//...
'Form' => NetoJose\Bootstrap4Forms\Bootstrap4FormsFacade::class,
],
// Opening a form using POST method
{!!Form::open()!!}
// ... Form components here
{!!Form::close()!!}
Opening the form will add _token field automatically for you
// Making all inputs inline
{!!Form::inlineForm()!!}
| Param | Type | Default | Description | | -------- | ------ | ------- | --------------- | | $legend | string | null | Fieldset Legend |
// Example
{!!Form::fieldsetOpen('Legend title')!!}
// ... fieldset content
{!!Form::fieldsetClose()!!}
| Param | Type | Default | Description | | --------- | ------ | ------- | ------------- | | $name | string | null | Input name | | $label | string | null | Input label | | $default | string | null | Default value |
// Example
{!!Form::text('name', 'User name')!!}
| Param | Type | Default | Description | | --------- | ------ | ------- | ------------- | | $name | string | null | Input name | | $label | string | null | Input label | | $default | string | null | Default value |
// Example
{!!Form::textarea('description', 'Description')!!}
| Param | Type | Default | Description | | --------- | ------ | ------- | -------------- | | $name | string | null | Input name | | $label | string | null | Input label | | $options | array | [] | Select options | | $default | string | null | Default value |
// Example
{!!Form::select('city', 'Choose your city', [1 => 'Gotham City', 2 => 'Springfield'])!!}
{!!Form::select('city', 'Choose your city', [''=>'--choose your city---',1 => 'Gotham City', 2 => 'Springfield'])!!}
| Param | Type | Default | Description | | --------- | ------- | ------- | ------------- | | $name | string | null | Input name | | $label | string | null | Input label | | $value | string | null | Input value | | $default | boolean | null | Default value |
// Example
{!!Form::checkbox('orange', 'Orange')!!}
| Param | Type | Default | Description | | --------- | ------- | ------- | ------------- | | $name | string | null | Input name | | $label | string | null | Input label | | $value | string | null | Input value | | $default | boolean | null | Default value |
// Example
{!!Form::radio('orange', 'Orange')!!}
| Param | Type | Default | Description | | ------- | ------ | ------- | ----------- | | $name | string | null | Input name | | $label | string | null | Input label |
// Example
{!!Form::file('doc', 'Document')!!}
| Param | Type | Default | Description | | --------- | ------ | ------- | ------------- | | $name | string | null | Input name | | $label | string | null | Input label | | $default | string | null | Default value |
// Example
{!!Form::date('birthday', 'Birthday')!!}
| Param | Type | Default | Description | | --------- | ------ | ------- | ------------- | | $name | string | null | Input name | | $label | string | null | Input label | | $default | string | null | Default value |
// Example
{!!Form::time('hour', 'Meeting hour')!!}
| Param | Type | Default | Description | | --------- | ------ | ------- | ------------- | | $name | string | null | Input name | | $label | string | null | Input label | | $default | string | null | Default value |
// Example
{!!Form::range('name', 'User name')!!}
| Param | Type | Default | Description | | --------- | ------- | ------- | ------------- | | $name | string | null | Input name | | $default | boolean | null | Default value |
// Example
{!!Form::hidden('user_id')!!}
| Param | Type | Default | Description | | ------- | ------ | ------- | ----------- | | $value | string | null | Anchor text | | $url | string | null | Anchor url |
// Example
{!!Form::anchor("Link via parameter", 'foo/bar')!!}
| Param | Type | Default | Description | | ------- | ------ | ------- | ------------ | | $value | string | null | Button value | | $color | string | null | Button color | | $size | string | null | button size |
// Example
{!!Form::submit("Send form")!!}
// Example
{!!Form::button("Do something", "warning", "lg")!!}
// Example
{!!Form::reset("Clear form")!!}
This package uses chaining feature, allowing easly pass more parameters.
| Param | Type | Default | Description | | ------ | ------ | ------- | ----------- | | $data | object | array | null | DAta fo fill form inputs |
// Examples
// With initial data using a Model instance
$user = User::find(1);
{!!Form::open()->fill($user)!!}
// With initial array data
$user = ['name' => 'Jesus', 'age' => 33];
{!!Form::open()->fill($user)!!}
Use in anchors and forms openings
| Param | Type | Default | Description | | ----- | ------ | ------- | ----------- | | $url | string | null | Url |
// Example
{!!Form::anchor("Link via url")->url('foo/bar')!!}
Use in anchors and forms openings
| Param | Type | Default | Description | | ------- | ------ | ------- | ----------- | | $route | string | null | Route name |
// Example
{!!Form::anchor("Link via route")->route('home')!!}
Set the checkbox/radio checked status
| Param | Type | Default | Description | | --------- | ------- | ------- | -------------- | | $checked | boolean | true | Checked status |
// Examples
// Using readonly field
{!!Form::checkbox('agree', 'I agree')->checked()!!}
// You can use FALSE to turn off checked status
{!!Form::checkbox('agree', 'I agree')->checked(false)!!}
Set the checkbox/radio checked status
// Examples
{!!Form::radio('orange', 'Orange')->inline()!!}
{!!Form::checkbox('orange', 'Orange')->inline()!!}
| Param | Type | Default | Description | | ------------- | ------ | ------- | ---------------- | | $placeholder | string | null | Placeholder text |
// Example
{!!Form::text('name', 'Name')->placeholder('Input placeholder')!!}
// Example
{!!Form::select('city', 'Choose your city', [1 => 'Gotham City', 2 => 'Springfield'])->multiple()!!}
Using locale, the package will look for a resources/lang/{CURRENT_LANG}/forms/user.php language file and uses labels and help texts as keys for replace texts
// Example
{!!Form::open()->locale('forms.user')!!}
| Param | Type | Default | Description | | ------ | ------ | ------- | ----------- | | $text | string | null | Help text |
// Example
{!!Form::text('name', 'Name')->help('Help text here')!!}
| Param | Type | Default | Description | | ------- | ----- | ------- | ----------------------- | | $attrs | array | [] | Custom input attributes |
// Example
{!!Form::text('name', 'Name')->attrs(['data-foo' => 'bar', 'rel'=> 'baz'])!!}
| Param | Type | Default | Description | | ------- | ----- | ------- | ----------------------- | | $attrs | array | [] | Custom input attributes |
// Example
{!!Form::text('name', 'Name')->wrapperAttrs(['data-foo' => 'bar', 'id'=> 'name-wrapper'])!!}
| Param | Type | Default | Description | | -------- | ------- | ------- | ---------------- | | $status | boolean | true | Read only status |
// Examples
// Using readonly field
{!!Form::text('name', 'Name')->readonly()!!}
// You can use FALSE to turn off readonly status
{!!Form::text('name', 'Name')->readonly(false)!!}
| Param | Type | Default | Description | | -------- | ------- | ------- | --------------- | | $status | boolean | true | Disabled status |
// Examples
// Disabling a field
{!!Form::text('name', 'Name')->disabled()!!}
// Disabling a fieldset
{!!Form::fieldsetOpen('User data')->disabled()!!}
// You can use FALSE to turn off disabled status
{!!Form::text('name', 'Name')->disabled(false)!!}
| Param | Type | Default | Description | | -------- | ------- | ------- | --------------- | | $status | boolean | true | Disabled status |
// Examples
// Disabling a field
{!!Form::text('name', 'Name')->block()!!}
// You can use FALSE to turn off block status
{!!Form::text('name', 'Name')->block(false)!!}
| Param | Type | Default | Description | | -------- | ------- | ------- | --------------- | | $status | boolean | true | Required status |
// Examples
// Disabling a field
{!!Form::text('name', 'Name')->required()!!}
// Disabling a fieldset
{!!Form::fieldsetOpen('User data')->required()!!}
// You can use FALSE to turn off required status
{!!Form::text('name', 'Name')->required(false)!!}
| Param | Type | Default | Description | | ------- | ------ | ------- | ----------------- | | $value | string | 'on' | autocomplte value |
see: https://html.spec.whatwg.org/multipage/forms.html#autofill
If no autocomplete value is specified on the form, html spec requires a default value of 'on'. So, you must explicitly turn it off.
Autocomplete values will be automatically generated for fields with single word names matching valid values (e.g. name, email, tel, organization). The complete list is in the spec mentioned above.
// Examples
// Switch off autocomplete for the form
{!!Form::open()->autocomplete('off')!!}
// Explicitly set a autocomplete value
{!!Form::text('mobile', 'Mobile Number')->autocomplete('tel')!!}
// Disable autocomplete for fields with valid names
{!!Form::text('name', 'Name')->autocomplete('off')!!}
| Param | Type | Default | Description | | ----- | ------ | ------- | ----------- | | $id | string | null | Id field |
// Example
{!!Form::text('name', 'Name')->id('user-name')!!}
| Param | Type | Default | Description | | -------- | ------ | ------- | ----------- | | $prefix | string | null | Id prefix |
// Example
{!!Form::open()->idPrefix('register')!!}
| Param | Type | Default | Description | | ----------- | ------- | ------- | -------------- | | $multipart | boolean | true | Multipart flag |
// Examples
{!!Form::open()->multipart()!!}
// You can use FALSE to turn off multipart
{!!Form::open()->multipart(false)!!}
| Param | Type | Default | Description | | -------- | ------ | ------- | ----------- | | $method | string | null | HTTP method |
// Examples
{!!Form::open()->method('get')!!}
{!!Form::open()->method('post')!!}
{!!Form::open()->method('put')!!}
{!!Form::open()->method('patch')!!}
{!!Form::open()->method('delete')!!}
// Examples
{!!Form::open()->get()!!}
{!!Form::open()->post()!!}
{!!Form::open()->put()!!}
{!!Form::open()->patch()!!}
{!!Form::open()->delete()!!}
| Param | Type | Default | Description | | ------- | ------ | ------- | ----------- | | $color | string | null | Color name |
// Examples
{!!Form::button("Do something")->color("warning")!!}
{!!Form::button("Do something")->color("primary")!!}
// Examples
{!!Form::button("Button label")->warning()!!}
{!!Form::button("Button label")->outline()!!}
{!!Form::button("Button label")->success()!!
{!!Form::button("Button label")->danger()!!}
{!!Form::button("Button label")->secondary()!!}
{!!Form::button("Button label")->info()!!}
{!!Form::button("Button label")->light()!!}
{!!Form::button("Button label")->dark()!!}
{!!Form::button("Button label")->link()!!}
| Param | Type | Default | Description | | ------ | ------ | ------- | ----------- | | $size | string | null | Size name |
// Examples
{!!Form::button("Do something")->size("sm")!!}
{!!Form::button("Do something")->size("lg")!!}
// Examples
{!!Form::button("Button label")->sm()!!}
{!!Form::button("Button label")->lg()!!}
| Param | Type | Default | Description | | ------ | ------ | ------- | ----------- | | $type | string | null | Type field |
// Examples
// Password field
{!!Form::text('password', 'Your password')->type('password')!!}
// Number field
{!!Form::text('age', 'Your age')->type('number')!!}
// Email field
{!!Form::text('email', 'Your email')->type('email')!!}
| Param | Type | Default | Description | | ------ | ------ | ------- | ----------- | | $name | string | null | Input name |
// Examples
{!!Form::text('text')->name('name')!!}
| Param | Type | Default | Description | | ------- | ------ | ------- | ----------- | | $label | string | null | Input label |
// Examples
{!!Form::text('age')->label('Your age')!!}
| Param | Type | Default | Description | | ------- | ----- | ------- | ----------- | | $value | mixed | null | Input value |
// Example
{!!Form::text('name', 'Your name')->value('Maria')!!}
| Param | Type | Default | Description | | -------- | ------ | ------- | ----------- | | $render | string | null | Render name |
// Examples
// Number field
{!!Form::render('text')->name('age')->label('Your age')!!}
You can use chaining feature to use a lot of settings for each component
// Examples
{!!Form::open()->locale('forms.user')->put()->multipart()->route('user.add')->data($user)!!}
{!!Form::text('name', 'Name')->placeholder('Type your name')->lg()!!}
{!!Form::anchor("Link as a button")->sm()->info()->outline()!!}
{!!Form::submit('Awesome button')->id('my-btn')->disabled()->danger()->lg()!!}
{!!Form::close()!!}