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

Edit Sevrice

@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_keywords', 'seo_keywords ', 'Seo Keywords', '', $data->seo_keywords) }}
{{ createPlainTextArea('seo_descriptions', 'seo_descriptions ', 'Seo Descriptions', '', $data->seo_descriptions) }}
{{ createPlainTextArea('og_tags', 'og_tags ', 'Og Tags', '', $data->og_tags) }}
{{--
{{ createCustomSelect('tbl_services', 'title', 'service_id', $data->parent_service, 'Parent Service', 'parent_service', 'form-control select2', 'status<>-1') }}
--}}
{{ createText('link', 'link', 'Icon', '', $data->link) }}

Image

{{ createMultiImageInput('cover_photo', 'Image', '', $data->cover_photo) }}
@endsection