FormsBootstrap
A Laravel library to generate forms based on Laravel Collective Forms & HTML, Boostrap 5 CSS Framework, RichText editor, and Icons provided by FontAwesome. Current version: 3.1.1. Project on GitHub. Project on Packagist. Manages also results inputs of packages DateRangePickerHelper, Uploader, and Tags input. Includes form management and validation. This demosite sources available here.
Hidden input
{!! Form::bsHidden([
'id' => 'id', // field id and name
'value' => 0 //default init value
]); !!}
Output:<input type="hidden" name="id" value="0" id="id" />