@extends('layouts.backend') @section('content') Add Blog Home Add Blog @if(session()->has('message')) {{ session()->get('message') }} @endif Add Blog Detail @csrf {{ __('Category')}} Select Category @foreach($BlogCategories as $k=>$v) {{ $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('meta_description') }} @if ($errors->has('description')) {{ $errors->first('description') }} @endif {{ __('Image')}} {{ __('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