@endif
@endif
@if ($showLabel && $options['label'] !== false && $options['label_show'])
{!! Form::customLabel($name, $options['label'], $options['label_attr']) !!}
@endif
@if ($showField)
{!! Form::text(
$name,
$options['value'] ?? Carbon\Carbon::now()->format('G:i'),
array_merge($options['attr'], [
'class' =>
Arr::get($options['attr'], 'class', '') .
str_replace(Arr::get($options['attr'], 'class'), '', ' form-control time-picker timepicker timepicker-24'),
]),
) !!}
@include('core/base::forms.partials.help-block')
@endif
@include('core/base::forms.partials.errors')
@if ($showLabel && $showField)
@if ($options['wrapper'] !== false)
@endif
@endif