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

{{ label('Edit Article') }}

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