{!! Form::open(['url' => route('slider.store'), 'data-parsley-validate', 'files' => true, 'id' => 'sliderForm', 'enctype' => 'multipart/form-data', 'onsubmit' => 'return validateForm()']) !!}
{{-- Type --}}
{{ Form::label('type', __('Type'), [ 'class' => 'col-md-12 col-sm-12 form-label']) }}
{{-- App Image --}}
{{ Form::label('app-image', __('App Image'), [ 'class' => 'col-md-12 col-sm-12 form-label', ]) }}
{{ Form::file('image', ['class' => 'form-control', 'accept' => 'image/jpg,image/png,image/jpeg,image/webp', 'data-parsley-required' => true,'id' => 'app-image']) }}
{{-- Web Image --}}
{{ Form::label('web-image', __('Web Image'), [ 'class' => 'col-md-12 col-sm-12 form-label', ]) }}
{{ Form::file('web_image', ['class' => 'form-control', 'accept' => 'image/jpg,image/png,image/jpeg,image/webp', 'data-parsley-required' => true,'id' => 'web-image']) }}
{{-- Category --}}
{{ Form::label('category', __('Category'), [ 'class' => 'col-md-12 col-sm-12 form-label']) }}
{{-- Property --}}
{{ Form::label('property', __('Property'), [ 'class' => 'col-md-12 col-sm-12 form-label', ]) }}
{{-- Show Property Details --}}
{{-- Link --}}
{{ Form::label('link', __('Link'), ['class' => 'col-md-12 col-sm-12 form-label']) }}
{!! Form::text('link', null, ['placeholder' => trans('Link'), 'id' => 'link', 'class' => 'form-control']) !!}
{{-- Save --}}
{{ Form::submit(__('Save'), ['class' => 'btn btn-primary me-1 mb-1', 'id' => 'submitButton']) }}