{{ isset($label) ? html()->label($label)->class('font-semibold text-black dark:text-white') : '' }} {{isset($required)?html()->span('*')->class('text-danger'):''}} {{ html()->select($name, $options, isset($value)? $value : null) ->placeholder($placeholder??$label??'') ->required(isset($required)?true:false) ->id(isset($id)?$id:$name) ->class(isset($class)? $class: 'w-full rounded border-[1.5px] bg-transparent py-2 px-5 font-medium outline-none mt-1 transition focus:border-primary active:border-primary disabled:cursor-default disabled:bg-whiter dark:border-form-strokedark dark:bg-form-input dark:focus:border-primary' . ($errors->has($name) ? ' border-red-500' : ' border-stroke'), ) }} @include('admin.layouts.components.validation', ['name' => $name])