@extends('admin.layout.app') @section('pageTitle')

{{ __('User') }}

@stop @section('css') @stop @section('content')
@foreach ($users as $user)
{{ $user->name }}

{{ $user->role->name ?? '' }}

@if(!($user->id == 1) || auth()->id() == 1) @if(!(auth()->id() == $user->id)) @endif @endif
@endforeach
{{ $users->links('vendor.pagination.semantic-ui') }}
@foreach ($users as $user) @if(!($user->id == 1) || auth()->id() == 1) @if(!(auth()->id() == $user->id)) @endif @endif @endforeach @stop