@php $class= 'w-full h-24 text-sm px-3 py-2.5 mt-1 rounded-lg border border-light-gray text-black placeholder-light-gray bg-white disabled:bg-gray-200 focus:outline-none focus:ring-transparent focus:border-purple'; if ($attributes->has('override')) { $class = $attributes->get('override'); } elseif ($attributes->get('class')) { $class .= ' ' . $attributes->get('class'); } @endphp