@extends('layouts.backend') @section('content')

Edit Blog

@if(session()->has('message'))
{{ session()->get('message') }}
@endif

Edit Blog Detail

@csrf
@if ($errors->has('blog_categories_id')) {{ $errors->first('blog_categories_id') }} @endif
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('short_description')) {{ $errors->first('short_description') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
@if($Blog->image != "")

@endif
@if ($errors->has('meta_title')) {{ $errors->first('meta_title') }} @endif
@if ($errors->has('meta_description')) {{ $errors->first('meta_description') }} @endif
@if ($errors->has('meta_keywords')) {{ $errors->first('meta_keywords') }} @endif
@endsection @section('head') @endsection @section('script_bottom') @endsection