@extends('layouts.admin.app') @section('content') {{-- --}} {{-- --}}
Blog Management
@csrf

Add Blog Management

@if(Session::has('success'))
{{ Session::get('success') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
@if ($errors->has('blogimage')) {{ $errors->first('blogimage') }} @endif
@if ($errors->has('category')) {{ $errors->first('category') }} @endif
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('slug')) {{ $errors->first('slug') }} @endif
@if ($errors->has('posteddate')) {{ $errors->first('posteddate') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@if(isset($seoId) && $seoId!="") @else @endif
@include('layouts.admin.footer') @endsection