{{ Form::radio_ex($id."_expire_type", \App\Models\Promo::EXPIRE_TYPE_DAYS, $promo->expire_type, 'Expires in', null, 'on_change_expire_type("'.$id.'", this.value)') }} {{ Form::text_suffix($id.'_expire_days', $promo->expire_days, null, 'days', null, null, 'expire-days') }}
{{ Form::radio_ex($id."_expire_type", \App\Models\Promo::EXPIRE_TYPE_DOES_NOT, $promo->expire_type, 'Does Not Expire', 12, 'on_change_expire_type("'.$id.'", this.value)') }}
{{ Form::label_title('Offer', \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::text_ex($id.'_offer', $promo->offer ) }}
{{ Form::label_title('Terms & Conditions', \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::textarea_ex($id.'_terms', $promo->terms ) }}
{{ Form::label_title('Follow-On Communication', \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{!! Form::tinymce($id.'_follow_on_communication', old($id.'_follow_on_communication') !== null ? old($id.'_follow_on_communication') : $promo->follow_on_communication )!!}