Looking to hire Laravel developers? Try LaraJobs

laravel-form maintained by anourvalar

Description
Laravel blade components for HTML form elements (input / select / textarea)
Last update
2026/03/22 17:41 (dev-master)
License
Downloads
7 906

Comments
comments powered by Disqus

Laravel blade components for HTML form elements

Installation

composer require anourvalar/laravel-form

Features

  • Replacement to the old values on validation failure;

  • Error class addition for invalid elements.

Usage

Input

<x-input type="text" name="foo" value="some text" />
<x-input type="checkbox" name="foo" value="1" :checked="$isChecked" />
<x-input type="radio" name="foo" value="1" checked-value="2" />
<x-input type="radio" name="foo" value="2" checked-value="2" /> <!-- will be checked -->
<x-input type="radio" name="foo" value="3" checked-value="2" />

Select

<x-select name="foo" :options="[1 => ['title' => 'One'], 2 => ['title' => 'Two']]" selected="2" />

Textarea

<x-textarea name="foo">Text</x-textarea>