@extends('adminlte::page') @section('title', config('app.name') . ' | ' . __('User Directory')) @section('content_header')

{{__('Users')}} / {{__('Directory')}}

@stop @section('js') @stop @section('css') @stop @section('content') @if (Auth::user()->can('profiles.view.others'))
@foreach ($users as $user) @if (!is_null($user->profile))

{{ $user->name }}

{{ $user->profile->profileShortBio }}
@if($user->profile->avatarPreference == 'gravatar') {{ __('User profile picture') }} @else {{ __('User profile picture') }} @endif
@endif @endforeach
@else

{{__("We're sorry, but you do not have permission to access this web page.")}}

@endif @stop @section('footer') @include('breadcrumbs.dashboard.footer') @stop