@extends('layouts.main') @section('breadcrumb') @include('admin.account.parts.breadcrumb_accounts_index') @include('admin.account.parts.breadcrumb_accounts_show', ['account' => $account]) @endsection @section('content')

users {{ $account->identifier }}

@include('admin.account.parts.tabs') plus {{ __('Add') }}

{{ __('Contacts') }}

@if ($account->contacts->isEmpty()) @else @foreach ($account->contacts as $contact) @endforeach @endif
{{ __('Empty') }}
{{ $contact->identifier }} trash

{{ __('Contacts Lists') }}

@foreach ($account->contactsLists as $contactsList) @endforeach
{{ $contactsList->title }} {{ $contactsList->contacts_count }} {{ __('Contacts') }} trash
@if ($contacts_lists->isNotEmpty())

plus {{ __('Add') }}

{{ __('Add existing contacts lists to display them in the user applications.') }}

@csrf @method('post')
@endif @endsection