@extends('layouts.admin') @section('title', 'Edit Post') @section('header', 'Edit Post') @section('content')
@csrf @method('PUT')
@foreach(['image', 'video', 'article'] as $type) @endforeach
@if($post->media_path)

Current media:

@if($post->type === 'video') @else @endif
@endif @if($post->thumbnail_path)

Current thumbnail:

@endif
Cancel
@endsection