@extends('admin.layouts.main') @section('title', 'Edit Post') @section('menu', 'Post') @push('css') @endpush @section('content')
@csrf

Edit Post

@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@if ($errors->has('category_id')) {{ $errors->first('category_id') }} @endif
@if ($errors->has('content')) {{ $errors->first('content') }} @endif

@if ($errors->has('thumbnail')) {{ $errors->first('thumbnail') }} @endif
@endsection @push('js') @endpush