@extends('layouts.main') @section('breadcrumb') @endsection @section('content')

users {{ __('Accounts') }}

@if ($space)

{{ $accounts->count()}} / @if ($space->max_accounts > 0){{ $space->max_accounts }} @else infinity@endif

@endif download-simple {{ __('Import') }} @if (space()?->intercom_features) shapes {{ __('Types') }} @endif plus {{ __('Create') }}
@csrf
@include('admin.account.parts.forms.select_domain')
{{ __('Reset') }}
@include('parts.column_sort', ['key' => 'username', 'title' => __('Identifier')]) @include('parts.column_sort', ['key' => 'updated_at', 'title' => __('Updated')]) @if ($accounts->isEmpty()) @endif @foreach ($accounts as $account) @endforeach
{{ __('Contacts Lists') }} Badges
{{ __('Empty') }}
{{ $account->identifier }} @if ($account->contactsLists->isNotEmpty()) {{ $account->contactsLists->first()->title }} @if ($account->contactsLists->count() > 1) +{{ $account->contactsLists->count() - 1 }} @endif @endif @if ($account->activated) Act. @endif @if ($account->superAdmin) Super Adm. @elseif ($account->admin) Adm. @endif @if ($account->sha256Password) SHA256 @endif @if ($account->blocked) {{ __('Blocked') }} @endif {{ $account->updated_at }}
{{ $accounts->links('pagination::bootstrap-4') }} @endsection