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.
Notice how the hidden _method and _token fields were automatically added and filled? You'll never forget to add csrf_field() again because now you simply wont have to anymore!
Another common use case might be to fill an input element based on the value that was previously submitted (using $request->old()). Worry no more, this has been taken care of as well. The above code will automatically fill in the email field if $session->old('email') exists. Amazing.