2022-06-05 21:02:51 -07:00
|
|
|
<div id="userBulkEditToolbar">
|
2022-06-05 20:13:51 -07:00
|
|
|
{{ Form::open([
|
2022-06-05 18:08:15 -07:00
|
|
|
'method' => 'POST',
|
|
|
|
'route' => ['users/bulkedit'],
|
|
|
|
'class' => 'form-inline',
|
2022-06-05 20:13:51 -07:00
|
|
|
'id' => 'usersBulkForm']) }}
|
2022-06-05 18:08:15 -07:00
|
|
|
|
|
|
|
@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="edit">{{ trans('general.bulk_edit') }}</option>
|
2022-06-05 21:02:51 -07:00
|
|
|
<option value="delete">{!! trans('general.bulk_checkin_delete') !!}</option>
|
2022-06-05 18:08:15 -07:00
|
|
|
<option value="bulkpasswordreset">{{ trans('button.send_password_link') }}</option>
|
|
|
|
</select>
|
2022-06-05 21:02:51 -07:00
|
|
|
<button class="btn btn-primary" id="bulkUserEditButton" disabled>{{ trans('button.go') }}</button>
|
2022-06-05 18:08:15 -07:00
|
|
|
</div>
|
|
|
|
@endcan
|
2022-06-05 20:13:51 -07:00
|
|
|
@endif
|
2022-06-05 21:02:51 -07:00
|
|
|
{{ Form::close() }}
|
2022-06-05 20:13:51 -07:00
|
|
|
</div>
|