@props([
'name',
'label',
'type' => 'text',
'value' => null,
'required' => false,
'col' => 'col-md-6',
'help' => null,
])
merge(['class' => 'form-control'.($errors->has($name) ? ' is-invalid' : '')]) }}>
@error($name)
{{ $message }}
@enderror
@if ($help)
{{ $help }}
@endif