@extends('layouts.main_dashboard.app') @section('title', __('dashboard.Edit Post')) @section('page_heading', __('dashboard.Edit Post')) @section('breadcrumb') @endsection @section('content')
@csrf @method('PUT')
@error('body')
{{ $message }}
@enderror
@if($post->type == 'normal' && $post->attachments->count() > 0)
@foreach($post->attachments as $attachment)
@if($attachment->file_type == 'image') @else
@endif
@endforeach
@endif @if($post->type == 'poll')
{{ __('dashboard.Poll options cannot be edited after creation.') }}
@endif
{{ __('dashboard.Cancel') }}
@endsection