芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/rentandbuyrealty.com/rentandbuyrealty.com/resources/views/slider/index.blade.php
@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', ]) }}
Choose Category
@if (isset($category)) @foreach ($category as $row)
{{ $row->category }}
@endforeach @endif
{{ Form::label('property', __('Property'), [ 'class' => 'col-md-12 col-sm-12 form-label text-start', ]) }}
Choose Property
{{--
--}}
{{ Form::submit(__('Save'), ['class' => 'btn btn-primary me-1 mb-1']) }}
{!! Form::close() !!}
{{ csrf_field() }}
{{ __('ID') }}
{{ __('Image') }}
{{ __('Category') }}
{{ __('Property') }}
{{ __('Action') }}
@endsection @section('script') @endsection