@extends('layouts/default') {{-- Page title --}} @section('title') Bulk Edit/Delete @parent @stop {{-- Page content --}} @section('content')
WARNING: You are about to delete the {{ count($users) }} user(s) listed below. Admin names are highlighted in red.
@if (config('app.lock_passwords'))

Note: This feature is disabled on the demo.

@endif
@foreach ($users as $user) @endforeach
Name Groups
Update all assets for these users to this status: {{ Form::select('status_id', $statuslabel_list , Input::old('status_id'), array('class'=>'select2', 'style'=>'width:350px')) }}
@if (Auth::user()->id!=$user->id) @else @endif id==$user->id ? ' style="text-decoration: line-through"' : '') }}>{{ $user->fullName() }} {{ (Auth::user()->id==$user->id ? ' (cannot delete yourself)' : '') }}
{{ trans('button.cancel') }}
@stop