@extends('backEnd.master') @section('styles') @endsection @section('mainContent') {{ __('blog.add_new_post') }} @csrf {{ __('blog.post_info') }} {{__('common.title')}} * @if ($errors->has('title')) {{ $errors->first('title') }} @endif {{__('common.slug')}} * @if ($errors->has('slug')) {{ $errors->first('slug') }} @endif {{__("common.description")}} * @if ($errors->has('content')) {{ $errors->first('content') }} @endif {{ __('common.basic_info') }} {{ __('common.category') }} * @foreach($CategoryList as $value) -> {{ $value->name }} @foreach ($value->childs as $child_account) @include('blog::category.category_select', ['child_account' => $child_account]) @endforeach @endforeach @if ($errors->has('categories')) {{ $errors->first('categories') }} @endif @lang('blog.tags') (@lang('product.comma_separated'))* @lang('blog.suggested_tags') @if ($errors->has('tags')) {{ $errors->first('tags') }} @endif {{ __('common.image') }}(1000x500)px {{__("common.image")}} {{__("blog.close_comments")}} {{__("blog.publish")}} {{__("common.save")}} @endsection @push('scripts') @endpush