@props([
'id' => null,
'label' => null,
'name' => null,
'value' => old($name),
'helperText' => null,
'errorKey' => $name,
])
@php
$id = $attributes->get('id', $name) ?? Str::random(8);
$classes = Arr::toCssClasses(['form-control', 'is-invalid' => $errors->has($errorKey)]);
@endphp
@if ($label)
@endif
@if ($helperText)
{!! $helperText !!}
@endif