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

{{ $account->identifier }}

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

{{ __('Contacts') }}

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

{{ __('Contacts Lists') }}

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

{{ __('Add') }}

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

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