@extends('backend.layouts.app') @section('title', 'Edit Post') @push('styles') @endpush @section('content')
@csrf @method('PUT')

EDIT POST

status = true ? 'checked' : ""}}/>

SELECT CATEGORY



@php $categories = []; $tags = []; @endphp @foreach($post->categories as $category) @php $categories[] = $category->id; @endphp @endforeach @foreach($post->tags as $tag) @php $tags[] = $tag->id; @endphp @endforeach @endsection @push('scripts') @endpush