@extends('layouts.default') @section('styles') @stop @section('scripts') @include('cdn.datatables') @stop @section('panel-heading') User Maintenance @stop @section('panel-presentation') @stop @section('content')

From this page, you can edit user information and add new users.

@foreach($users as $user) @endforeach
First Name Last Name Address Username User Role User Status Last Logged In Actions
{{ $user->first_name }} {{ $user->last_name }} {{ $user->associationUnit ? $user->associationUnit->address : '' }} {{ $user->username }} {{ UserRole::getRoles($user->user_role_id) }} {{ UserStatus::getStatusString($user->user_status_id) }} {{ $user->last_logged_in ? $user->last_logged_in->setTimeZone('America/Chicago')->format("D, M d, Y g:i A") : '' }} Edit
@stop