@if (isset($isReminder) && $isReminder) {!! Former::populateField('enable_' . $field, intval($account->{'enable_' . $field})) !!}
{!! Former::checkbox('enable_' . $field) ->text(trans('texts.send_automatically'))->label('') ->value(1) !!}
{!! Former::plaintext('') ->value( Former::input('num_days_' . $field) ->addClass('enable-' . $field) ->style('float:left;width:20%') ->raw() . Former::select('direction_' . $field) ->addOption(trans('texts.days_before'), REMINDER_DIRECTION_BEFORE) ->addOption(trans('texts.days_after'), REMINDER_DIRECTION_AFTER) ->addClass('enable-' . $field) ->style('float:left;width:40%') ->raw() . '' . Former::select('field_' . $field) ->addOption(trans('texts.field_due_date'), REMINDER_FIELD_DUE_DATE) ->addOption(trans('texts.field_invoice_date'), REMINDER_FIELD_INVOICE_DATE) ->addClass('enable-' . $field) ->style('float:left;width:40%') ->raw() ) !!}

@endif
{!! Former::text('email_subject_' . $field) ->label(trans('texts.subject')) ->appendIcon('question-sign') ->addGroupClass('email-subject') !!}

 


{!! Former::textarea('email_template_' . $field) ->label(trans('texts.body')) ->style('display:none') !!}

 

 

{!! Button::normal(trans('texts.raw'))->withAttributes(['onclick' => 'showRaw("'.$field.'")'])->small() !!} {!! Button::primary(trans('texts.preview'))->withAttributes(['onclick' => 'serverPreview("'.$field.'")'])->small() !!}