@extends('layouts.backend') @section('title') @lang('backend.messages_views.page_name') @endsection @section('content')

@lang('backend.messages_views.page_name')

{{$thread->subject}}

@lang('backend.titles.participants'): {{$thread->participants()}} @foreach($thread->messages as $message) @endforeach {!! Form::open(['route' => ['messages.update', $thread->id], 'method' => 'PUT']) !!} @include('backend.messenger.fields')
{!! Form::close() !!}
@endsection