@extends('layouts.main') @section('title') {{ __('Slider') }} @endsection @section('page-title')

@yield('title')

@endsection @section('content')
{!! Form::open(['url' => route('slider.store'), 'data-parsley-validate', 'files' => true, 'id' => 'sliderForm', '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', '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', 'data-parsley-required' => true,'id' => 'web-image']) }}
{{-- Category --}} {{-- Property --}} {{-- Link --}} {{-- Save --}}
{{ Form::submit(__('Save'), ['class' => 'btn btn-primary me-1 mb-1', 'id' => 'submitButton']) }}
{!! Form::close() !!}
{{--
{{ csrf_field() }} --}}
{{-- --}}
{{ __('ID') }} {{ __('Type') }} {{ __('Image') }} {{ __('Web Image') }} {{ __('Category') }} {{ __('Property') }} {{ __('Show Property Details') }} {{ __('Link') }} {{ __('Action') }}
{{--
--}}
@endsection @section('script') @endsection