@extends('layouts.admin') @section('content')

Create Post

@csrf
@if(!empty($post) && $post->post_type == 1)
@if($post->poll_options) @foreach(json_decode($post->poll_options, true) as $option)
@endforeach @else
@endif
@elseif(!empty($post) && $post->post_type == 3)
@php $images = $post->image ? json_decode($post->image, true) : []; @endphp @if(!empty($images)) @foreach($images as $image)
Image Preview
@endforeach @else
@endif
@elseif(!empty($post) && $post->post_type == 2)
@php $videos = $post->post_video ? json_decode($post->post_video, true) : []; @endphp @if(!empty($videos)) @foreach($videos as $video)
@endforeach @else
@endif
@endif
Back
@endsection @section('script') @endsection