Description
Painless html generation
This package helps you generate HTML using a clean, simple and easy to read API. All elements can be dynamically generated and put together. The HTML builder helps you generate dynamically assigned form elements based on your selected model, the session or a default value.
Here's a quick example that builds a basic form with an e-mail input:
{{ html()->form('PUT', '/post')->open() }} {{ html()->email('email')->placeholder('Your e-mail address') }} {{ html()->form()->close() }} The generated HTML will look like this:```html<form method="POST" action="/post"> <input type="hidden" name="_method" id="_method" value="PUT"> <input type="hidden" name="_token" id="_token" value="csrf_token_will_be_here"> <input type="email" name="email" id="email" placeholder="Your e-mail address"></form>
Recent Courses on Laravel Daily
[NEW] Marketing for Developers in 2026
7 lessons
52 min
AI Agents/IDEs for Laravel: May 2026 (Claude Code, Codex, OpenCode, etc)
7 lessons
52 min
Testing in Laravel 13 For Beginners
26 lessons
1 h 41 min read