@extends('layouts.master') @section('page_title', 'Intake Prep') @section('content')
{{ Form::page_header("Intake Prep", "business") }} {{ Form::open(['url' => action('SalesPrepController@update', compact('business', 'sales_prep'))]) }}
@include('super_admin.sales_prep._sales_prep_ratings')
{{ 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) }}
@include('shared._website_functionality_edit', ['data' => $sales_prep])
{{ Form::label_title("Industry") }}
@if (sizeof(session()->getOldInput()) > 0 && (Request::old('industry') != '') ) @include('shared.forms._driver_component_edit', ['btn_title' => 'Add a Driver', 'selected_industry' => \App\Models\Industry::find(Request::old('industry')), 'selected_income_streams' => \App\Models\Income_Stream::whereIn('income_stream', Request::old('income_stream'))->get() ] ) @else @include('shared.forms._driver_component_edit', ['btn_title' => 'Add a Driver', 'selected_industry' => $selected_industry, 'selected_income_streams' => $selected_income_streams] ) @endif
@include('shared.forms._customer_value_edit', ['is_sales_prep' => true, 'col_width' => 6])
@include('super_admin.sales_prep._sales_prep_questions', ['type' => 'edit'])
{{ Form::button_save() }} {{ Form::button_link('Cancel', action('SalesPrepController@sales_prep', compact('business'))) }}
{{ Form::close() }} @endsection @section('page_script') @include('shared_script._bomb_rating_script') @include('shared_script._intake_script') {{ Html::script('/js/moment.min.js') }} {{ Html::script('/js/daterangepicker.js') }} @endsection @section('page_style') {{ HTML::style('/css/bomb_rating.css') }} {{ Html::style('/css/daterangepicker.css') }} {{ Html::style('/css/daterangepicker_custom.css') }} @endsection