{{ Form::label_title('Customer Value Calculator') }}
@if (!isset($is_sales_prep))
{{ Form::separator_row('grey-divider thin-divider') }}
@endif
{{ Form::label_ex('On average, how often do you see your customers per year?', \App\Helpers\FormComponentHelper::SIZE_MEDIUM, 'frequency', 6) }}
{{ Form::number_ex('frequency', $intake->frequency, (6). ' frequency-block') }}
{{ Form::row_dollar_inline('average_spend', 'Again on average, how much do they spend with you per visit?',
$intake->average_spend, $col_width, (12-$col_width). ' average-spend-block', \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::row_percent_inline('percentage_conversion', 'What percentage of new customers would you say become regulars?',
$intake->percentage_conversion, $col_width, (12-$col_width), \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::separator_row('grey-divider thin-divider') }}
{{ Form::label_styled('Annual Value Per Customer', 'upper-case', \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::dollar_ex('annual_value', $intake->annual_value, null, 4, 4 ) }}
{{ Form::label_styled('Three Year Average Value', 'upper-case', \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::dollar_ex('three_year_value', $intake->three_year_value, null, 4, 4) }}
{{ Form::hidden('redirect', null, ['class' => 'promo_input input-field-default'])}}