@extends('backend.template.layouts.template-base') @section('title', 'Edit Blog') @section('content') Edit Blog Back @csrf @method('PUT') Blog Date* @error('blog_date') {{ $message }} @enderror Blog Category* -- Select -- @foreach ($category as $blogcategory) category_id) == $blogcategory->id ? 'selected' : '' }}> {{ $blogcategory->name }} @endforeach @error('category') {{ $message }} @enderror Blog Title* @error('blog_title') {{ $message }} @enderror URL of the Slug* @error('blog_url') {{ $message }} @enderror Blog Image* @if ($blog->image) @endif Image Alt Tag * Author Name Author Image @if ($blog->author_image) @endif Status status == 1)> Active status == 0)> Inactive show_in_home == 1) value="1" class="permission-checkbox"> Show in Home Page Description * {{ $blog->description }} @error('description') {{ $message }} @enderror SEO Settings Meta Title @error('meta_title') {{ $message }} @enderror Meta Keyword @error('meta_keyword') {{ $message }} @enderror Meta Description {{ $blog->meta_description }} @error('meta_description') {{ $message }} @enderror Submit @endsection @section('scripts') @endsection