@extends('backpack::layout') @section('header') {{ __('base.chat.chat') }} @endsection @section('content') {{ __('base.chat.possible_dialogues') }} @if( $recipients->isNotEmpty() ) @foreach($recipients as $recipient) {{ $recipient->first_name .' '. $recipient->last_name }} @endforeach @endif @if( $active_recipients->isNotEmpty() ) {{ __('base.chat.active_dialogues') }} @foreach($active_recipients as $recipient) {{ $recipient->first_name .' '. $recipient->last_name }} @endforeach @endif {{ __('base.chat.messages') }} @if( !isset($recipient_id) ) {{ __('base.chat.select_recipient') }} @else @include('admin.chat_messages') @endif {{ __('base.chat.send_message') }} Something went wrong! Please reload page. @endsection @push('after_scripts') @endpush @push('after_styles') @endpush