@if($wid->extra_fields)
@for($i = 1 ; $i<=$wid->extra_fields; $i++)
@php
$label = 'extra_field_title_'.$i;
$name = 'extra_field_'.$i;
@endphp
{!! Form::label($name, $wid->$label, ['class' => 'font-weight-bold']) !!}
{!! Form::text($name, null, array('class'=>'form-control', 'id'=>$name, 'placeholder'=>$wid->$label, 'required'=>'required')) !!}
@endfor
@endif
@if($wid->is_extra_image_title_1)
@endif
@if($wid->is_extra_image_title_2)
@endif
@if($wid->is_description)
{!! Form::label('description', $wid->title.' Description', ['class' => 'font-weight-bold']) !!}
{!! Form::textarea('description', null, array('class'=>'form-control', 'id'=>'description', 'placeholder'=>$wid->title.' Description', 'required'=>'required')) !!}
@endif
@if($wid->radio_buttons)
@for($i = 1 ; $i<=$wid->radio_buttons; $i++)
@php
$label = 'radio_button_title_'.$i;
$name = 'radio_button_'.$i;
@endphp
@endfor
@endif
@if($wid->is_bullets)
@endif
@push('js')
@endpush