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

Edit Study Abroads Article

@csrf
{{ createText('title', 'title', 'Title','', $data->title) }}
{{ createTextarea('text', 'text ckeditor-classic', 'Description', $data->text) }}

SEO

{{ createText('seo_title', 'seo_title', 'Seo Title','', $data->seo_title) }}
{{ createPlainTextArea('seo_descriptions', 'seo_descriptions ', 'Seo Descriptions','', $data->seo_descriptions) }}
{{ createPlainTextArea('seo_keywords', 'seo_keywords ', 'Seo Keywords', '', $data->seo_keywords) }}
{{ createPlainTextArea('og_tags', 'og_tags ', 'Og Tags', '', $data->og_tags) }}

Atributes

{{ createCustomSelect('tbl_countries', 'title', 'country_id', $data->countries_id, 'Country', 'countries_id', 'form-control select2', 'status<>-1') }} {{ createCustomSelect('tbl_countryarticles', 'title', 'article_id', $data->parent_article, 'Parent Article', 'parent_article', 'form-control select2', 'status<>-1') }}

Images

{{ createImageInput('cover_photo', 'Cover Photo', '', $data->cover_photo) }}
{{ createImageInput('thumb', 'Thumb', '', $data->thumb) }}
@endsection