@extends('layouts.backend') @section('title') Blog @endsection @section('headSection') @endsection @section('content')

{{ __('Update Blog') }}

@csrf @method('PUT')
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('tags')) {{ $errors->first('tags') }} @endif
@if ($errors->has('description')) {{ $errors->first('content') }} @endif
@if($blog->feature_image != '')
@endif Feature Image cannot more than 1mb , with format : jpeg,jpg,png
Feature Image names are prohibited using #,%,\,/,? @error('feature_image')
{{ $message }}
@enderror
@if ($errors->has('seo_title')) {{ $errors->first('seo_title') }} @endif
@if ($errors->has('seo_description')) {{ $errors->first('seo_description') }} @endif
@endsection @section('footerSection') @endsection