{{ __('Messages') }} {{ trans_choice(':count conversation|:count conversations', $this->conversations->count(), ['count' => $this->conversations->count()]) }}
{{ __('New') }}
@for ($index = 0; $index < 6; $index++)
@endfor
@forelse ($this->conversations as $conversation) @php $selected = $selectedConversationId === $conversation->id; $unreadCount = (int) ($conversation->unread_messages_count ?? 0); $isPinned = $this->isPinnedFor($conversation); $isMuted = $this->isMutedFor($conversation); @endphp @empty
{{ __('No conversations found') }} {{ __('Try a different name, email, or group title.') }}
@endforelse
{{ __('Profile settings') }} {{ __('Password and 2FA') }} {{ __('Appearance') }}
@csrf {{ __('Log out') }}
{{ __('New conversation') }} {{ __('Start a direct message or create a group with your team.') }}
{{ trans_choice(':count selected|:count selected', count($selectedMemberIds), ['count' => count($selectedMemberIds)]) }}
{{ __('Direct') }} {{ __('Group') }} @if ($createType === \App\Models\Conversation::TypeGroup)
@endif
@error('selectedMemberIds') {{ $message }} @enderror @if ($this->selectedMembers->isNotEmpty())
@foreach ($this->selectedMembers as $member) @endforeach
@endif
@forelse ($this->candidateUsers as $candidate) @empty
{{ __('No people found') }} {{ __('Try a different name or email address.') }}
@endforelse
{{ __('Cancel') }} {{ $createType === \App\Models\Conversation::TypeGroup ? __('Create group') : __('Start chat') }}