Sistema de controles da União de Ciclistas do Brasil
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 

20 lines
571 B

@props([
'state' => null,
])
@php
$class = 'block w-full px-3 py-2 border border-gray-300 rounded-md placeholder-gray-400 focus:outline-none focus:shadow-outline-blue focus:border-blue-300 transition duration-150 ease-in-out sm:text-sm sm:leading-5';
if ($state === false) {
$class .= ' border-red-300 text-red-900 placeholder-red-300 focus:border-red-300 focus:shadow-outline-red';
}
@endphp
<div class="mt-1 rounded-md shadow-sm">
<select
{{ $attributes->merge(compact('class')) }}
>
{{ $slot }}
</select>
</div>