@extends('admin.layouts.masterlayout') @section('title') Edit Post @endsection @section('Css') @endsection @section('head_title') Post Management @endsection @section('content')

Edit Post

Post List / Edit Post

@csrf @method('PUT')

Other Details

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
is_discover ? 'checked' : '' }}>
@php $btnName = $post->status === 'draft' ? 'publish' : 'update'; @endphp Cancel
@endsection @section('script') @endsection