@extends('layouts.admin') @section('content')
{{ csrf_field() }}

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

@include('includes.admin.form-both')
@component('admin.components.input-localized', ['required' => true]) @slot('name') name @endslot @slot('placeholder') {{ __('Enter Name') }} @endslot {{ __('Name') }}* @endcomponent
{{-- Title Section --}}

{{ __('Title') }}

@foreach ($locales as $loc) @if ($loc->locale === $lang->locale) @continue @endif
@endforeach
{{-- Title Section Ends --}}
{{-- Sub Title Section --}}

{{ __('Sub Title') }}

@foreach ($locales as $loc) @if ($loc->locale === $lang->locale) @continue @endif
@endforeach
{{-- Sub Title Section Ends --}}
{{-- Details Section --}}

{{ __('Description') }}

@foreach ($locales as $loc) @if ($loc->locale === $lang->locale) @continue @endif
@endforeach
{{-- Description Section Ends --}}

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

{{ __('Prefered Size: (1920x400) or Rectangular Sized Image') }}

{{ __('Link') }}

{{ __('Text Position') }}*

{{ __('Display in Stores') }}

@foreach ($storesList as $store)
@endforeach
@endsection