@extends('layouts.load') @section('content')
@include('includes.admin.form-error')
{{csrf_field()}}

* {{ __("indicates a required field") }}

@component('admin.components.input-localized',["required" => true]) @slot('name') title @endslot @slot('placeholder') {{ __('Title') }} @endslot {{ __('Title') }} * @endcomponent

{{ __('Current Featured Image') }}

{{ __('Category') }}*

{{ __('Source') }} *

@component('admin.components.input-localized',["required" => true, "type" => "richtext"]) @slot('name') details @endslot {{ __('Description') }} * @endcomponent
@component('admin.components.input-localized',["type" => "tags"]) @slot('name') meta_tag @endslot {{ __('Meta Tags') }} @endcomponent @component('admin.components.input-localized',["type" => "textarea"]) @slot('name') meta_description @endslot @slot('placeholder') {{ __('Meta Description') }} @endslot {{ __('Meta Description') }} @endcomponent
@component('admin.components.input-localized',["type" => "tags"]) @slot('name') tags @endslot {{ __('Tags') }} @endcomponent
@endsection