@extends ('forum.master', ['breadcrumbs_append' => [trans('forum::posts.edit')]])
@section ('content')
{{ trans('forum::posts.edit') }} ({{ $thread->title }})
@if ($post->parent)
{{ trans('forum::general.response_to', ['item' => $post->parent->authorName]) }}...
@include ('forum.post.partials.list', ['post' => $post->parent, 'single' => true])
@endif
@stop