mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-28 17:02:04 +03:00
Added user-select input
This commit is contained in:
6
resources/views/components/user-select-list.blade.php
Normal file
6
resources/views/components/user-select-list.blade.php
Normal file
@ -0,0 +1,6 @@
|
||||
@foreach($users as $user)
|
||||
<a href="#" class="flex-container-row items-center dropdown-search-item" data-id="{{ $user->id }}">
|
||||
<img class="avatar mr-m" src="{{ $user->getAvatar(30) }}" alt="{{ $user->name }}">
|
||||
<span>{{ $user->name }}</span>
|
||||
</a>
|
||||
@endforeach
|
Reference in New Issue
Block a user