i80586 / laravel-form-fields
Laravel form fields generator - for admin panels
Installs: 933
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/i80586/laravel-form-fields
Requires
- php: >=8.0
Requires (Dev)
- phpunit/phpunit: v9.6.*
README
Form fields generator for Laravel
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') !!}