11 lines
420 B
PHP
11 lines
420 B
PHP
|
@props(['selectedRole' => null ])
|
||
|
|
||
|
<select {!! $attributes->merge(['class' => 'border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 rounded-md shadow-sm']) !!}>
|
||
|
<option value="">Выберите должность</option>
|
||
|
@foreach($roles as $role)
|
||
|
<option @selected($role == $selectedRole) value="{{ $role }}">
|
||
|
{{ $role->description() }}
|
||
|
</option>
|
||
|
@endforeach
|
||
|
</select>
|