@extends('admin.layout.app') @section('title', 'Edit Blog') @section('content')
Edit Blog
Back
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT') {{-- Category & Title --}}
{{-- Slug --}}
{{-- Short Description --}}
{{-- Content --}}
{{-- Featured Image --}}
@if($blog->featured_image) Featured Image @endif
{{-- Meta --}}
{{-- Submit --}}
@push('scripts') @endpush @endsection