{{ Form::label_title("Other") }}
{{ Form::label_ex('Business Cycle Type', \App\Helpers\FormComponentHelper::SIZE_MEDIUM, null, 5) }}
{{ Form::radio_ex('business_cycle_type', \App\Models\Business::BUSINESS_TYPE_SHORT, $sales_prep->business_cycle_type, 'Short') }}
{{ Form::radio_ex('business_cycle_type', \App\Models\Business::BUSINESS_TYPE_LONG, $sales_prep->business_cycle_type, 'Long') }}
{{ Form::radio_ex('business_cycle_type', \App\Models\Business::BUSINESS_TYPE_BOTH, $sales_prep->business_cycle_type, 'Both') }}
{{ Form::row_text_inline('name_searches', 'Name Searches', $sales_prep->name_searches, 5, 3, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::label_ex('Total Number of Reviews', \App\Helpers\FormComponentHelper::SIZE_MEDIUM, 'num_reviews', 5) }}
{{ Form::number_ex('num_reviews', $sales_prep->num_reviews, 3) }}
{{ Form::row_textarea_inline('national_competitor', 'National Competitors', $sales_prep->national_competitor,
5, 7, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::row_text_inline('pitch_deck_link', 'Pitch Deck', $sales_prep->pitch_deck_link, 5, 7, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::row_text_inline('proposal_link', 'Proposal', $sales_prep->proposal_link, 5, 7, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}