@props(['name', 'label' => null, 'type' => 'text', 'value' => null, 'hint' => null, 'required' => false, 'options' => null, 'placeholder' => null])
@php $id = $attributes->get('id', $name); @endphp
@if ($label)
@endif
@if ($type === 'select')
@elseif ($type === 'textarea')
@else
except(['id']) }}>
@endif
@error($name)
{{ $message }}
@enderror
@if ($hint && ! $errors->has($name))
{{ $hint }}
@endif