{{ trans('Home Slider Setting') }}

{!! Form::open(['url' => '/dashboard/'.$user_role.'/site-management/store/slider-settings', 'class' => 'sj-formtheme sj-formarticle sj-formsocical', 'id'=>'social_management', 'enctype' => 'multipart/form-data', 'multiple' => true]) !!}
@if (!empty($slide_unSerialize_array)) @php $counter = 0 @endphp @foreach($slide_unSerialize_array as $unSerializeKey => $unSerializeValue)
{!! Form::text('slide['.$counter.'][title]', $unSerializeValue['slide_title'], ['class' => 'form-control author_title','placeholder'=>trans('Title')]) !!}
{!! Form::textarea('slide['.$counter.'][desc]', $unSerializeValue['slide_desc'], ['class' => 'form-control author_title','placeholder'=>trans('Description')]) !!}
@if ($unSerializeKey == 0 ) @else @endif
@php $counter++; @endphp @endforeach @else
{!! Form::text('slide[0][title]', null, ['class' => 'form-control author_title', 'placeholder' => trans('Slide Title'),'v-model' => 'first_slide_title']) !!}
{!! Form::textarea('slide[0][desc]', null, ['class' => 'form-control author_title', 'placeholder' => trans('Slide Description'),'v-model' => 'first_slide_desc']) !!}
@endif
{!! Form::submit(trans('Save'), ['class' => 'sj-btn sj-btnactive']) !!}
{!! Form::close() !!}