okipa/laravel-form-components
Ready-to-use, fully customizable Laravel form components that generate HTML for you. Livewire compatible, supports Bootstrap 4/5 (TailwindCSS 3 planned). Includes form, input, textarea and more, with model binding and flexible configuration.
<x:form::input />), reducing boilerplate and improving maintainability.composer require), and the Blade component syntax integrates natively with Laravel’s view layer. No major architectural changes are required.okipa/laravel-bootstrap-components provides clear migration paths.class, autofocus, required), allowing teams to adapt them to existing design systems without reinventing the wheel.okipa/laravel-bootstrap-components) will need to refactor component calls (e.g., replacing inputEmail() with <x:form::input type="email" />). This is a one-time cost but requires testing.UI Framework Alignment:
Livewire Adoption:
Customization Needs:
Migration Strategy:
Long-Term Viability:
Team Skills:
<x:form::input wire:model="user.name" />).inputEmail()) with Blade components (e.g., <x:form::input type="email" />). Use the upgrade guide as a reference.<!-- Before -->
{{ inputEmail()->name('email')->componentHtmlAttributes(['required']) }}
<!-- After -->
<x:form::input type="email" name="email" required />
^1.2.How can I help you explore Laravel packages today?