@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)
@endforeach
@else
You do not have permission to view this page.
@endif
@stop