@extends('Admin.layout.main') @section('pageTitle', 'Post Add') @section('main-container')
@csrf
@if ($errors->has('post_name')) {{ $errors->first('post_name') }} @endif
@if ($errors->has('slug_name')) {{ $errors->first('slug_name') }} @endif
@if ($errors->has('category')) {{ $errors->first('category') }} @endif
@if ($errors->has('post_short_description')) {{ $errors->first('post_short_description') }} @endif
@if ($errors->has('post_description')) {{ $errors->first('post_description') }} @endif
@if ($errors->has('meta_title')) {{ $errors->first('meta_title') }} @endif
@if ($errors->has('canonical_url')) {{ $errors->first('canonical_url') }} @endif
@if ($errors->has('meta_keyword')) {{ $errors->first('meta_keyword') }} @endif
@if ($errors->has('meta_description')) {{ $errors->first('meta_description') }} @endif

@endsection