@extends('Layouts.adminLayout') @section('title') {{__('Insert Blog')}} @endsection @section('breadcrumb')
@endsection @section('content')

{{__('Insert Blog')}}

@CSRF
@if ($errors->has('lang'))
{{ $errors->first('lang') }}
@endif
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('author_name'))
{{ $errors->first('author_name') }}
@endif
@if ($errors->has('category'))
{{ $errors->first('category') }}
@endif
@if ($errors->has('file'))
{{ $errors->first('file') }}
@endif
@if ($errors->has('keywords'))
{{ $errors->first('keywords') }}
@endif
@if ($errors->has('meta_title'))
{{ $errors->first('meta_title') }}
@endif
@if ($errors->has('meta_tags'))
{{ $errors->first('meta_tags') }}
@endif
@if ($errors->has('meta_description'))
{{ $errors->first('meta_description') }}
@endif
@if ($errors->has('facebook_meta_tags'))
{{ $errors->first('facebook_meta_tags') }}
@endif
@if ($errors->has('facebook_meta_image'))
{{ $errors->first('facebook_meta_image') }}
@endif
@if ($errors->has('facebook_meta_description'))
{{ $errors->first('facebook_meta_description') }}
@endif
@if ($errors->has('twitter_meta_tags'))
{{ $errors->first('twitter_meta_tags') }}
@endif
@if ($errors->has('twitter_meta_image'))
{{ $errors->first('twitter_meta_image') }}
@endif
@if ($errors->has('twitter_meta_description'))
{{ $errors->first('twitter_meta_description') }}
@endif
@if ($errors->has('short_description'))
{{ $errors->first('short_description') }}
@endif
@if ($errors->has('text'))
{{ $errors->first('text') }}
@endif
@endsection @section('script') @endsection