{{ Form::label('city_selection', 'Nationally / City Wise', ['class' => 'fw-bold']) }} {{ Form::select('city_selection', ['auto' => 'Nationally', 'manual' => 'City Wise'], old('city_selection', $winner->city_selection), [ 'class' => 'form-control form-select', 'placeholder' => '--Select--', 'required', 'id' => 'citySelection' ]) }}
{{ Form::label('city_id', 'City', ['class' => 'fw-bold']) }} {{ Form::select('city_id', cities(), old('city_id', $winner->city_id), [ 'class' => 'form-control select', 'placeholder' => '--Select--', 'id' => 'cityList', 'disabled' => old('city_selection', $winner->city_selection) !== 'manual', 'required' => old('city_selection', $winner->city_selection) === 'manual', ]) }}
{{ Form::label('gender_wise', 'Gender Wise', ['class' => 'fw-bold']) }} {{ Form::select('gender_wise', ['Male' => 'Male', 'Female' => 'Female'], old('gender_wise', $winner->gender_wise), [ 'class' => 'form-control form-select', 'placeholder' => '--Select--', ]) }}
{{ Form::label('from_date', 'From Date', ['class' => 'fw-bold']) }} {{ Form::date('from_date', $winner->from_date, ['class' => 'form-control', 'required', 'id' => 'from_date']) }}
{{ Form::label('to_date', 'To Date', ['class' => 'fw-bold']) }} {{ Form::date('to_date', $winner->to_date, ['class' => 'form-control', 'required', 'id' => 'to_date']) }}
Prize List
#
Image
Prize Name
Remaining
Quantity
@forelse (prizes(false) as $key => $prize)
{{ ++$key }}
{{ $prize->name }}
{{ $prize->name }}
{{ $prize->quantity }}
@empty
No prize is available!
@endforelse