@extends('adminlte::page') @section('title', 'Raspberry Network | 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)

{{ $user->name }}

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

You do not have permission to view this page.

@endif @stop