@extends('admin.layouts.app') @push('styles_top') @endpush @section('content')

{{ $pageTitle }}

{{ trans('public.by') }} {{ $topic->creator->full_name }} {{ trans('public.in') }} {{ dateTimeFormat($topic->created_at, 'j M Y | H:i') }}
{{ csrf_field() }}
@error('title')
{{ $message }}
@enderror
@error('forum_id')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
@if(!empty($topic) and !empty($topic->attachments) and count($topic->attachments)) @foreach($topic->attachments as $topicAttachment)
@endforeach @endif @error('images')
{{ $message }}
@enderror
@endsection @push('scripts_bottom') @endpush