@extends('layouts.master') @section('page_title', 'Lifetime Value Calculator') @section('content')
{{ Form::page_header("Lifetime value calculator", "business") }}
{{ Form::open(['url' => $post_url,'id' => 'ltv_form']) }}
{{ Form::label_title('New leads') }}
{{ Form::label_title('Average conversion rate') }}
{{ Form::number_ex('leads', null, 4, null, null, null) }}
{{ Form::percent_ex('avg_conversion', null, 4) }}
{{ Form::label_styled('Total leads provided by boomtime services so far this year', 'box-label', \App\Helpers\FormComponentHelper::SIZE_SMALL) }}
{{ Form::label_styled('The percentage of new leads your business typically closes', 'box-label', \App\Helpers\FormComponentHelper::SIZE_SMALL) }}
{{ Form::label_title('Average customer spend') }}
{{ Form::label_title("boomtime's yearly fees") }}
{{ Form::row_dollar_inline('avg_year_spent', null, null, null, 4) }}
{{ Form::row_dollar_inline('bt_cost', null, null, null, 4) }}
{{ Form::label_styled('How much a typical client is worth in revenue per year', 'box-label', \App\Helpers\FormComponentHelper::SIZE_SMALL) }}
{{ Form::label_styled('How much you paid boomtime over the last 12 months', 'box-label', \App\Helpers\FormComponentHelper::SIZE_SMALL) }}
{{ Form::label_title('Average customer retention') }}
{{ Form::number_ex('retention', null, 4) }} {{ Form::label('', 'Years', ['class'=>'bt-label bt-suffix']) }}
{{ Form::label_styled('The typical number of years a customer stays with your business, rounded to the nearest whole number', 'box-label', \App\Helpers\FormComponentHelper::SIZE_SMALL) }}
{{ Form::button_right('Calculate', 'calculate_value()') }}

@include('business._lifetime_value_total', compact('total_value', 'lifetime_value')) {!! Form::close() !!}
@endsection @section('page_script') @include('shared_script._status_alert_notification_script') @endsection @section('page_style') @endsection