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

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

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

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

{{ __('Prefered Size: (100x100) or Square Sized Image') }}

@component('admin.components.input-localized',["type" => "richtext", "required" => true, "from" => $data]) @slot('name') details @endslot @slot('value') details @endslot {{ __('Description') }} @endcomponent
@endsection