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

@yield('title')

@endsection @section('content')
{!! Form::open(['url' => route('slider.store'), 'files' => true]) !!}
{{ Form::label('image', __('Image'), [ 'class' => 'col-md-1 col-sm-12 col-form-label text-center', ]) }}
{{ Form::file('image[]', ['class' => 'form-control', 'multiple' => true, 'accept' => 'image/*']) }} @if (count($errors) > 0) @foreach ($errors->all() as $error)
{{ $error }}
@endforeach @endif
{{ Form::label('category', __('Category'), [ 'class' => 'col-md-1 col-sm-12 col-form-label text-center', ]) }}
{{ Form::label('property', __('Property'), [ 'class' => 'col-md-1 col-sm-12 col-form-label text-center', ]) }}
{{ Form::submit(__('Save'), ['class' => 'btn btn-primary me-1 mb-1']) }}
{!! Form::close() !!}
{{ csrf_field() }}
{{ __('ID') }} {{ __('Image') }} {{ __('Category') }} {{ __('Property') }} {{ __('Action') }}
@endsection @section('script') @endsection