i80586/laravel-form-fields

Laravel form fields generator - for admin panels

v1.1 2024-02-23 14:07 UTC

This package is auto-updated.

Last update: 2024-04-23 14:33:46 UTC


README

Form fields generator for Laravel

Latest Version Build Status

Examples:


{!! html()->input('firstName') !!}

This will be output:

<label for="firstName">FirstName</label>
<input type="text" id="firstName" class="form-control" name="firstName" value="">

You can change automatic generated label and set first default value:
{!! html()->input('firstName', 'John', ['label' => 'Your name']) !!}

This will be output:

<label for="firstName">Your name</label>
<input type="text" id="firstName" class="form-control" name="firstName" value="John">

Change input type by setting fourth argument which is set by default to text:
{!! html()->input('price', 0, [], 'number') !!}

Enjoy :)