{{-- Radio Button Component Usage: --}} @props([ 'name', 'value', 'label' => null, 'error' => null, 'disabled' => false, ])
merge([ 'class' => 'h-4 w-4 border-gray-300 text-primary-600 focus:ring-primary-500 dark:border-gray-700 dark:bg-gray-800 dark:focus:ring-primary-600 disabled:opacity-50 disabled:cursor-not-allowed' . ($error ? ' border-red-300' : '') ]) }} />
@if($label) @endif @if($error)

{{ $error }}

@endif @if(isset($description))

{{ $description }}

@endif