@props([
'showLabel' => true,
'showField' => true,
'options' => [],
'name',
'nameKey' => null,
'prepend' => null,
'append' => null,
'showError' => true,
])
@if ($showLabel && $showField)
@if ($options['wrapper'] !== false)
@endif
@endif
@if ($showLabel && $options['label'] !== false && $options['label_show'])
@endif
@if ($showField)
@if ($prepend = Arr::get($options, 'prepend'))
{!! $prepend !!}
@endif
{!! $slot !!}
@if ($append = Arr::get($options, 'append'))
{!! $append !!}
@endif
@include('core/base::forms.partials.help-block')
@endif
@include('core/base::forms.partials.errors')
@if ($showLabel && $showField)
@if ($options['wrapper'] !== false)
@endif
@endif