@extends('layouts.backend') @section('content')
Edit Blog
Home
Edit Blog
@if(session()->has('message'))
{{ session()->get('message') }}
@endif
Edit Blog Detail
@csrf
{{ __('Category')}}
Select Category
@foreach($BlogCategories as $k=>$v)
id == $Blog->blog_categories_id) ? "selected" : "" }}>{{ $v->name }}
@endforeach
@if ($errors->has('blog_categories_id'))
{{ $errors->first('blog_categories_id') }}
@endif
{{ __('Title')}}
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
{{ __('Short Description')}}
@if ($errors->has('short_description'))
{{ $errors->first('short_description') }}
@endif
{{ __('Description')}}
{{ old('description') ? old('description') : $Blog->description }}
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
{{ __('Image')}}
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
@if($Blog->image != "")
@endif
{{ __('Meta Title')}}
@if ($errors->has('meta_title'))
{{ $errors->first('meta_title') }}
@endif
{{ __('Meta Description')}}
@if ($errors->has('meta_description'))
{{ $errors->first('meta_description') }}
@endif
{{ __('Meta Keywords')}}
@if ($errors->has('meta_keywords'))
{{ $errors->first('meta_keywords') }}
@endif
@endsection @section('head')
@endsection @section('script_bottom') @endsection