@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. Super admin names are highlighted in red.
@if (config('app.lock_passwords'))

{{ trans('feature_disabled') }}

@endif
@foreach ($users as $user) isSuperUser() ? ' class="danger"':'') !!}> @endforeach
Name Groups
{{ Form::select('status_id', $statuslabel_list , Input::old('status_id'), array('class'=>'select2', 'style'=>'width:250px')) }}
@if (Auth::user()->id!=$user->id) @else @endif id==$user->id ? ' style="text-decoration: line-through"' : '') }}>{{ $user->fullName() }} ({{ $user->username }}) {{ (Auth::user()->id==$user->id ? ' (cannot delete yourself)' : '') }}
@stop