@extends('admin.layout') @section('content')

{{ __('Blogs') }}

{{ __('Add Blog Category') }}

@csrf
@if ($errors->has('language_id'))

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

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

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

@endif

{{ __('Upload 730X455 (Pixel) Size image for best quality. Only jpg, jpeg, png image is allowed.') }}

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

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

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

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

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

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

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

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

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

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

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

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

@endif
@endsection