diff --git a/resources/views/dashboard/user/directory.blade.php b/resources/views/dashboard/user/directory.blade.php deleted file mode 100755 index b18583b..0000000 --- a/resources/views/dashboard/user/directory.blade.php +++ /dev/null @@ -1,112 +0,0 @@ -@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