@extends('layouts.app') @section('content')
@if($enable_auth_admin_controls)
{{ __('app.user.user_list') }} @if( isset($trash) && $trash->count() > 0 ) {{ __('app.apps.view_trash') }} ({{ $trash->count() }}) @endif
@if($users->first()) @foreach($users as $user) @endforeach @else @endif
{{ __('app.user.username') }} {{ __('app.apps.password') }} {{ __('app.apps.autologin_url') }} {{ __('app.settings.edit') }} {{ __('app.delete') }}
{{ $user->username }} @if(is_null($user->autologin)) @else {{ route('user.autologin', $user->autologin) }} @endif target }} href="{!! route('users.edit', [$user->id]) !!}" title="{{ __('user.settings.edit') }} {!! $user->title !!}"> @if($user->id !== 1) {{ html()->form('DELETE', route('users.destroy', $user->id))->style('display:inline')->open() }} {{ html()->form()->close() }} @endif
{{ __('app.user.settings.no_items') }}
@else
{{ __('app.unauthorized_for_form') }}
@endif
@endsection