@extends('layouts.app') @section('page-title', __('Users')) @section('page-heading', __('Users')) @section('breadcrumbs') @stop @section('content') @include('partials.messages')
@if (Request::has('search') && Request::get('search') != '') @endif
@if (count($users)) @foreach ($users as $user) @include('user.partials.row') @endforeach @else @endif
@lang('Username') @lang('Full Name') @lang('Email') @lang('Registration Date') @lang('Status') @lang('Action')
@lang('No records found.')
{!! $users->render() !!} @stop @section('scripts') @stop