webmachine/form

Form for Laravel 5
478
Install
composer require webmachine/form
PHP:>=5.5.0
License:MIT
Last Updated:Mar 10, 2022
Links: GitHub  ·  Packagist
Maintainer: webmachine

Form for Laravel 5

Install

Via Composer

$ composer require webmachine/form

Next, you must install the service provider and facade alias:

// config/app.php
'providers' => [
    ...
    Webmachine\Form\FormServiceProvider::class,
];

...

'aliases' => [
    ...
    'Form' => Webmachine\Form\FormFacade::class,
];

Publish

$ php artisan vendor:publish --provider="Webmachine\Form\FormServiceProvider"

Usage

In your views

{!! Form::text('mytext', ['class' => 'myclass']) !!}

License

The MIT License (MIT). Please see License File for more information.

Related Packages

fewagency/laravel-reformulator

Laravel middleware to filter, sanitize, parse and transform request input data.

116 5
activismebe/laravel-form-helpers

Handle form model binding, old input binding and validation error messages in a...

1,120 1
helmut/forms

A customisable and testable form abstraction library.

19 0
mrshanebarron/radio-group

Radio group component for Laravel - supports Livewire and Vue

8 0