PHPackages                             shibuyakosuke/laravel-form-extend - 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. [Templating &amp; Views](/categories/templating)
4. /
5. shibuyakosuke/laravel-form-extend

ActiveLibrary[Templating &amp; Views](/categories/templating)

shibuyakosuke/laravel-form-extend
=================================

Laravel 7+ form wrappers for Bootstrap and bulma.

1.0.7(3y ago)53.3k3[1 issues](https://github.com/ShibuyaKosuke/laravel-form-extend/issues)1MITPHPPHP ^7.2.5 | ^7.3 | ^7.4 | ^8.0 | ^8.1

Since Sep 24Pushed 2y ago1 watchersCompare

[ Source](https://github.com/ShibuyaKosuke/laravel-form-extend)[ Packagist](https://packagist.org/packages/shibuyakosuke/laravel-form-extend)[ RSS](/packages/shibuyakosuke-laravel-form-extend/feed)WikiDiscussions master Synced yesterday

READMEChangelog (8)Dependencies (5)Versions (9)Used By (1)

laravel-form-extend
===================

[](#laravel-form-extend)

[![CircleCI](https://camo.githubusercontent.com/674b699fc4055f5778871266f5b6d3c50e95d2d3c45227c23ecb3b8901e8f622/68747470733a2f2f696d672e736869656c64732e696f2f636972636c6563692f6275696c642f6769746875622f536869627579614b6f73756b652f6c61726176656c2d666f726d2d657874656e642f6d6173746572)](https://camo.githubusercontent.com/674b699fc4055f5778871266f5b6d3c50e95d2d3c45227c23ecb3b8901e8f622/68747470733a2f2f696d672e736869656c64732e696f2f636972636c6563692f6275696c642f6769746875622f536869627579614b6f73756b652f6c61726176656c2d666f726d2d657874656e642f6d6173746572)[![GitHub](https://camo.githubusercontent.com/affc78b6281dbb6af98fcd5288010c4d6a639bb64c82cff41b6f4017dc802916/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f536869627579614b6f73756b652f6c61726176656c2d666f726d2d657874656e64)](https://camo.githubusercontent.com/affc78b6281dbb6af98fcd5288010c4d6a639bb64c82cff41b6f4017dc802916/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f536869627579614b6f73756b652f6c61726176656c2d666f726d2d657874656e64)

Laravel 7+ form wrappers for Bootstrap and bulma.

Support css framework
---------------------

[](#support-css-framework)

- [Bootstrap 3](https://getbootstrap.com/docs/3.4/)
- [Bootstrap 4](https://getbootstrap.com/docs/4.5/getting-started/introduction/)
- [Bulma](https://bulma.io/)

Install
-------

[](#install)

```
composer require shibuyakosuke/laravel-form-extend
```

Config file
-----------

[](#config-file)

Publish config file.

```
php artisan vendor:publish --tag=lara-form
```

Set css framework name
----------------------

[](#set-css-framework-name)

Edit config/lara\_form.php.

```
'default' => 'bootstrap4', // bootstrap3 or bulma

```

Supported
---------

[](#supported)

### Elements

[](#elements)

Bootstrap 4Bootstrap 3Bulmainput::textOKOKOKinput::passwordOKOKOKinput::emailOKOKOKinput::urlOKOKOKinput::searchOKOKOKinput::rangeOKOKOKinput::hiddenOKOKOKinput::numberOKOKOKinput::telOKOKOKinput::dateOKOKOKinput::datetimeOKOKOKinput::datetimeLocalOKOKOKinput::timeOKOKOKinput::weekOKOKOKinput::fileOKOKOKinput::colorOKOKOKbutton:submitOKOKOKbutton:buttonOKOKOKselectOKOKOKtextareaOKOKOKcheckboxOKOKOKcheckboxesOKOKOKradioOKOKOKradiosOKOKOK### Addon

[](#addon)

Bootstrap 4Bootstrap 3BulmatextOKOKOKbuttonOKOKOKiconOKOKOKExample
-------

[](#example)

### Blade

[](#blade)

```

    Forms

    {{ LaraForm::linkCss() }}

    {{ LaraForm::name() }}

    {{ LaraForm::horizontal() }}

    {{ LaraForm::text('text', 'text', null) }}
    {{ LaraForm::password('password', 'password') }}
    {{ LaraForm::tel('tel', 'tel', null) }}
    {{ LaraForm::email('email', 'email', null) }}
    {{ LaraForm::date('date', 'date', null) }}
    {{ LaraForm::datetime('datetime', 'datetime', null) }}
    {{ LaraForm::datetimeLocal('datetime-local', 'datetime-local', null) }}
    {{ LaraForm::url('url', 'url') }}
    {{ LaraForm::search('search', 'search') }}

    {{ LaraForm::number('number', 'number') }}
    {{ LaraForm::time('time', 'time') }}
    {{ LaraForm::file('file', 'file') }}
    {{ LaraForm::range('range', 'range', 10, ['min' => 0, 'max' => 100, 'step' => 10]) }}
    {{ LaraForm::select('select', 'select', [], null, ['placeholder' => '----']) }}
    {{ LaraForm::textarea('textarea', 'textarea', null) }}

    {{ LaraForm::checkboxes('checkboxes', 'checkboxes', [1 => 'choice1', 2 => 'choice2'], []) }}
    {{ LaraForm::radios('radios', 'radios', [1 => 'choice1', 2 => 'choice2'], null) }}

    {{ LaraForm::checkbox('check', 'check', 1) }}
    {{ LaraForm::radio('radio', 'radio', 1) }}

    {{ LaraForm::button('Button') }}
    {{ LaraForm::submit() }}

    {{ LaraForm::close() }}

```

### Output

[](#output)

```

    Forms

    bootstrap4

    text
    password
    tel
    email
    date
    datetime
    datetime-local
    url
    search

    number
    time
    file
    range
    select----
    textarea

    checkboxes choice1 choice2
    radios choice1 choice2

     check
     radio

    Button

```

ScreeShot
---------

[](#screeshot)

Screenshot when error.

[![Bootstrap4](https://raw.githubusercontent.com/ShibuyaKosuke/laravel-form-extend/master/screenshots/screeshot-bootstrap4.png "Bootstrap4")](https://raw.githubusercontent.com/ShibuyaKosuke/laravel-form-extend/master/screenshots/screeshot-bootstrap4.png)

Addons
------

[](#addons)

```
{{ LaraForm::email('email', 'email', null, ['prefix' => LaraForm::addonText('E-mail')]) }}

{{ LaraForm::email('email', 'email', null, ['suffix' => LaraForm::addonButton('submit')]) }}

{{ LaraForm::email('email', 'email', null, ['prefix' => LaraForm::addonIcon('fas fa-envelope')]) }}
```

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance16

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~91 days

Recently: every ~158 days

Total

8

Last Release

1413d ago

PHP version history (4 changes)1.0.0PHP ^7.2.5 | ^7.3

1.0.2PHP ^7.2.5 | ^7.3 | ^7.4

1.0.5PHP ^7.2.5 | ^7.3 | ^7.4 | ^8.0

1.0.6PHP ^7.2.5 | ^7.3 | ^7.4 | ^8.0 | ^8.1

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/7816825?v=4)[Kosuke Shibuya](/maintainers/ShibuyaKosuke)[@ShibuyaKosuke](https://github.com/ShibuyaKosuke)

---

Top Contributors

[![ShibuyaKosuke](https://avatars.githubusercontent.com/u/7816825?v=4)](https://github.com/ShibuyaKosuke "ShibuyaKosuke (4 commits)")

---

Tags

artisanbootstrapbootstrap3bootstrap4bulmaformslaravellaravel-packagelaravelbootstrapformbulmabootstrap 3bootstrap 4

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/shibuyakosuke-laravel-form-extend/health.svg)

```
[![Health](https://phpackages.com/badges/shibuyakosuke-laravel-form-extend/health.svg)](https://phpackages.com/packages/shibuyakosuke-laravel-form-extend)
```

###  Alternatives

[cornford/bootstrapper

An easy way to intergrate Twitter Bootstrap with Laravel.

252.7k](/packages/cornford-bootstrapper)[tomjamon/laravel-custom-html

Custom HTML generator for Laravel (Based on LaravelCollective HTML)

1018.6k](/packages/tomjamon-laravel-custom-html)[zfbase/zend1-bootstrap3

Twitter Bootstrap v.3 Forms for Zend Framework v.1

1455.7k2](/packages/zfbase-zend1-bootstrap3)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
