mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
e39a75f2cc
Signed-off-by: snipe <snipe@snipe.net>
23 lines
1.1 KiB
PHP
23 lines
1.1 KiB
PHP
<div id="userBulkEditToolbar">
|
|
{{ Form::open([
|
|
'method' => 'POST',
|
|
'route' => ['users/bulkedit'],
|
|
'class' => 'form-inline',
|
|
'id' => 'usersBulkForm']) }}
|
|
|
|
@if (request('status')!='deleted')
|
|
@can('delete', \App\Models\User::class)
|
|
<div id="users-toolbar">
|
|
<label for="bulk_actions" class="sr-only">{{ trans('general.bulk_actions') }}</label>
|
|
<select name="bulk_actions" class="form-control select2" style="min-width:300px;" aria-label="bulk_actions">
|
|
<option value="edit">{{ trans('general.bulk_edit') }}</option>
|
|
<option value="delete">{!! trans('general.bulk_checkin_delete') !!}</option>
|
|
<option value="merge">{!! trans('general.merge_users') !!}</option>
|
|
<option value="bulkpasswordreset">{{ trans('button.send_password_link') }}</option>
|
|
</select>
|
|
<button class="btn btn-primary" id="bulkUserEditButton" disabled>{{ trans('button.go') }}</button>
|
|
</div>
|
|
@endcan
|
|
@endif
|
|
{{ Form::close() }}
|
|
</div> |