@extends('template.layouts.template-base') @section('title', 'Edit Blog') @section('styles') @endsection @section('content') Blog / Edit Blog {{-- English English Tamil --}} @csrf @method('PUT') Blog Category Name* Select Category @foreach($categories as $category) blog_category_id) == $category->id ? 'selected' : '' }}> {{ $category->category_name_en }} @endforeach Blog Title* Blog Status * status ? '1' : '0') == '1' ? 'checked' : '' }} /> Active status ? '1' : '0') == '0' ? 'checked' : '' }} /> Inactive is_default) == 1 ? 'checked' : '' }}> Set as Default Blog Post On Slug Name Blog Description English * {{ old('description_en', $blog->description_en) }} Blog Description Tamil {{ old('description_tamil', $blog->description_tamil) }} Blog Media Blog Thumbnail Image * (97px*97px) Blog Video @if($blog->thumbnail_image) @else Choose a file or drag and drop it here JPG, PNG or JPEG (Max 1 MB) @endif Gallery Image (402px*260px) @foreach($blog->galleryImages->take(2) as $i => $galleryImg) @endforeach @for($i = $blog->galleryImages->count(); $i < 2; $i++) Choose a file or drag and drop it here JPG, PNG or JPEG (Max 1 MB) @endfor Add More Image SEO Meta Configuration Meta Title * Meta Keywords* Meta Description {{ old('meta_description', $blog->meta_description) }} Cancel Update Blog @endsection @section('scripts') @endsection