mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
19 lines
931 B
PHP
19 lines
931 B
PHP
|
{{ Form::open([
|
||
|
'method' => 'POST',
|
||
|
'route' => ['users/bulkedit'],
|
||
|
'class' => 'form-inline',
|
||
|
'id' => 'bulkForm']) }}
|
||
|
|
||
|
@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="width: 200px;" aria-label="bulk_actions">
|
||
|
<option value="delete">{!! trans('general.bulk_checkin_delete') !!}</option>
|
||
|
<option value="edit">{{ trans('general.bulk_edit') }}</option>
|
||
|
<option value="bulkpasswordreset">{{ trans('button.send_password_link') }}</option>
|
||
|
</select>
|
||
|
<button class="btn btn-default" id="bulkEdit" disabled>{{ trans('button.go') }}</button>
|
||
|
</div>
|
||
|
@endcan
|
||
|
@endif
|