You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
662 B
14 lines
662 B
2 years ago
|
@foreach($choice_options as $key=>$choice)
|
||
|
<div class="row">
|
||
|
<div class="col-md-3">
|
||
|
<input type="hidden" name="choice_no[]" value="{{$choice_no[$key]}}">
|
||
|
<input type="text" class="form-control" name="choice[]" value="{{$choice['title']}}"
|
||
|
placeholder="{{translate('messages.choice_title')}}" readonly>
|
||
|
</div>
|
||
|
<div class="col-lg-9">
|
||
|
<input type="text" class="form-control call-update-sku" name="choice_options_{{$choice_no[$key]}}[]" data-role="tagsinput"
|
||
|
value="@foreach($choice['options'] as $c) {{$c.','}} @endforeach">
|
||
|
</div>
|
||
|
</div>
|
||
|
@endforeach
|