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

{{ label('Add News') }}

@csrf
{{ createCustomSelect('tbl_economies', 'title', 'economy_id', '', 'Economies Id', 'economics_id', 'form-control select2', 'status<>-1') }}
{{ createCustomSelect('tbl_provinces', 'title', 'province_id', '', 'Provinces Id', 'provinces_id', 'form-control select2', 'status<>-1') }}
{{ createCustomSelect('tbl_news_type', 'title', 'news_type_id', '', 'News Type Id', 'news_type_id', 'form-control select2', 'status<>-1') }}
{{ createCustomSelect('tbl_authors', 'title', 'author_id', '', 'Authors Id', 'authors_id', 'form-control select2', 'status<>-1') }}

News

{{ createText('title', 'title', 'Title') }}
{{ createText('nepali_title', 'nepali_title', 'Nepali Title') }}
{{ createPlainTextArea('short_description', 'short_description', 'Short Description') }}
{{ createTextarea('content', 'content ckeditor-classic', 'Content') }}
{{ createCustomSelect('tbl_newscategories', 'title', 'category_id', '', 'Newscategories Id', 'newscategories_id', 'form-control select2', 'status<>-1') }}

Cover Photo

{{ createImageInput('thumb', 'Thumb') }}
{{ createImageInput('image', 'Image') }}

Featured News

@endsection