@extends('admin.layout') @section('css') @endsection @section('content')
CREATE YOUR BLOGS
Fill this Form & Create Your Blogs
@csrf
@if($errors->has('category_id'))

{{ $errors->first('category_id') }}

@endif
@if($errors->has('title'))

{{ $errors->first('title') }}

@endif
@if($errors->has('slug'))

{{ $errors->first('slug') }}

@endif
@if($errors->has('image'))

{{ $errors->first('image') }}

@endif
@if($errors->has('alt'))

{{ $errors->first('alt') }}

@endif
@if($errors->has('banner'))

{{ $errors->first('banner') }}

@endif
@if($errors->has('banner_alt'))

{{ $errors->first('banner_alt') }}

@endif
Short Description
@if($errors->has('short_des'))

{{ $errors->first('short_des') }}

@endif
Long Description
@if($errors->has('long_des'))

{{ $errors->first('long_des') }}

@endif
@if($errors->has('sort'))

{{ $errors->first('sort') }}

@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('js') @endsection