@if ( $errors->count() > 0 )

The following errors have occurred:

@endif @if(count($users)) @foreach($users as $user) @endforeach
Name Email Username
{{ $user->firstName }} {{ $user->lastName }} {{ $user->email }} {{ $user->username }} Show Edit {{ Form::open(array('url' => 'users/' . $user->id, 'class' => 'pull-right')) }} {{ Form::hidden('_method', 'DELETE') }} @if($user->username != 'admin' && $user->id != $curr_user->id) {{ Form::submit('Delete', array('class' => 'btn btn-small btn-warning')) }} @endif {{ Form::close() }}
@else

There aren't users in database.

@endif