black-bits / formbuilder
HTML and Form Builder for the Laravel Framework
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/black-bits/formbuilder
Requires
- php: >=7.0.0
- illuminate/support: ^5.5
This package is auto-updated.
Last update: 2025-09-29 02:01:56 UTC
README
HTML and Form Builder for the Laravel Framework
How to use
<div class="col-md-6"> {{ Formbuilder::title('Edit User', 'h2') }} {{ Formbuilder::open(route('form1.post'), 'post') }} {{ csrf_field() }} {{ Formbuilder::text( "full_name", old('full_name', $user->get('full_name')), "Full Name", "Max Mustermann") }} {{ Formbuilder::text( "username", old('username', $user->get('username')), "Username", "mmustermann") }} {{ Formbuilder::email( "email", old('email', $user->get('email')), "Email", "max@mustermann.de") }} {{ Formbuilder::password( "password", '', "Password", "your-secret-password") }} {{ Formbuilder::password( "password_repeat", '', "Password Repeat", "your-secret-password") }} {{ Formbuilder::buttons( route('home')) }} {{ Formbuilder::close() }} </div>