@extends('admin.layouts.master') @section('content')

{{ trans('app.flashdeals') }}

{!! Form::open(['route' => ['admin.flashdeal.create', 'flashdeal'], 'files' => false, 'class' => 'form-horizontal', 'id' => 'form', 'data-toggle' => ' validator']) !!}
{!! Form::label('Start Time', trans('app.deal_schedule') . ':*', ['class' => 'with-help control-label']) !!}

{!! trans('app.help_deal_schedule') !!}

{{ trans('app.starting_time') }}
{{ trans('app.ending_time') }}
{!! Form::label('listings', trans('app.listings') . ':', ['class' => 'with-help control-label']) !!}

{!! trans('app.help_deal_items') !!}

{{-- {!! Form::select('listings[]', $listings ?? null, ['class' => 'form-control searchProductForSelect', 'multiple' => 'multiple', 'placeholder' => trans('app.listings'), 'required']) !!} --}}
{{ trans('app.hints_deal_items') }}
{!! Form::label('Featured', trans('app.featured_items') . ':', ['class' => 'with-help control-label']) !!}

{!! trans('app.help_featured_items') !!}

{{ trans('app.hints_featured_items') }}
{!! Form::submit(trans('app.update'), ['class' => 'btn btn-lg btn-flat btn-new pull-right']) !!}
{!! Form::close() !!}
@endsection