@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]) !!}
{{--
--}} {{ Form::label('image', __('Image'), [ 'class' => 'col-md-12 col-sm-12 form-label text-start', ]) }} {{ Form::file('image', ['class' => 'form-control', 'accept' => 'image/*', 'data-parsley-required' => true]) }}
{{ Form::label('category', __('Category'), [ 'class' => 'col-md-12 col-sm-12 form-label text-start', ]) }}
{{ Form::label('property', __('Property'), [ 'class' => 'col-md-12 col-sm-12 form-label text-start', ]) }}
{{--
--}}
{{ Form::submit(__('Save'), ['class' => 'btn btn-primary me-1 mb-1']) }}
{!! Form::close() !!}
{{ csrf_field() }}
{{ __('ID') }} {{ __('Image') }} {{ __('Category') }} {{ __('Property') }} {{ __('Action') }}
@endsection @section('script') @endsection