@if($community->present()->canManage())
{!! Theme::section('community.page.members-list-menubar', ['direct' => $direct]) !!}

@if(!count($users))
No inactive members found

@endif @foreach($users as $user) @if(!empty($user))
{{$user->fullname}} {!! Theme::section('user.verified', ['user' => $user]) !!} @ {{$user->username}} {{$user->email_address}}
@if($user->city) {{$user->city}} @endif @if($user->state), {{$user->state}} @endif @if($user->country)
{{$user->country}} @endif
Signup on : {{date("M j,Y",strtotime($user->created_at))}}
@if(!isset($actions))
@if($community->isOwner()) @if($user->community_signup==$community->id)

active==1) checked @endif>

@endif @endif
@endif
@endif @endforeach {!! $users->render() !!}
@endif