{{-- Pterodactyl - Panel --}} {{-- Copyright (c) 2015 - 2017 Dane Everitt --}} {{-- This software is licensed under the terms of the MIT license. --}} {{-- https://opensource.org/licenses/MIT --}} @extends('layouts.admin') @section('title') List Users @endsection @section('content-header')

UsersAll registered users on the system.

@endsection @section('content')

User List

@foreach ($users as $user) @endforeach
ID Email Client Name Username 2FA Servers Owned Can Access
{{ $user->id }} {{ $user->email }} {{ $user->name_last }}, {{ $user->name_first }} {{ $user->username }} @if($user->use_totp) @else @endif {{ $user->servers_count }} {{ $user->subuser_of_count }}
@if($users->hasPages()) @endif
@endsection