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: 2.4.0. 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 id="id" name="id" type="hidden" value="0">