@extends('backEnd.master') @section('styles') @endsection @section('mainContent')

{{ __('blog.add_new_post') }}

@csrf

{{ __('blog.post_info') }}

@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('slug')) {{ $errors->first('slug') }} @endif
@if ($errors->has('content')) {{ $errors->first('content') }} @endif

{{ __('common.basic_info') }}

@if ($errors->has('categories')) {{ $errors->first('categories') }} @endif
@if ($errors->has('tags')) {{ $errors->first('tags') }} @endif

@endsection @push('scripts') @endpush