@extends('backend.template') @section('content')

{{ label('Add Article') }}

@csrf
{{ createCustomSelect('tbl_articles', 'title', 'article_id', '', 'Parent Article', 'parent_article', 'form-control select2', 'status<>-1') }}
{{ createText('title', 'title', 'Title') }}
{{ createText('subtitle', 'subtitle', 'Subtitle') }}
{{ createTextarea('text', 'text ckeditor-classic', 'Text') }}
{{ createImageInput('cover_photo', 'Cover Photo') }}
{{ createPlainTextArea('seo_keywords', 'seo_keywords ', 'Seo Keywords') }}
{{ createText('seo_title', 'seo_title', 'Seo Title') }}
{{ createPlainTextArea('seo_descriptions', 'seo_descriptions ', 'Seo Descriptions') }}
{{ createPlainTextArea('og_tags', 'og_tags ', 'Og Tags') }}

@endsection