@extends('layouts.master') @section('page_title', 'Intake Prep') @section('content')
{{ Form::page_header("Intake Prep", "business") }}
@include('shared._message_all')
@include('super_admin.sales_prep._sales_prep_ratings')
{{ Form::label_title("Other") }}
{{ Form::row_label_inline('Business Cycle Type', isset($sales_prep->business_cycle_type) ? \App\Models\Business::$business_cycle_type[$sales_prep->business_cycle_type] : '', 'label-grey bt-label-small', 5, 7, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} {{ Form::row_label_inline('Name Searches', $sales_prep->name_searches, 'label-grey bt-label-small', 5, 7, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} {{ Form::row_label_inline('Total Number of Reviews', $sales_prep->num_reviews, 'label-grey bt-label-small', 5, 7, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} {{ Form::row_label_inline('National Competitors', $sales_prep->national_competitor, 'label-grey bt-label-small', 5, 7, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::label_title('Pitch Deck',\App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
@if($sales_prep->pitch_deck_link) {{ Form::label_link($sales_prep->pitch_deck_link, $sales_prep->pitch_deck_link, \App\Helpers\FormComponentHelper::SIZE_SMALL ) }} @endif
{{ Form::label_title('Proposal',\App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
@if($sales_prep->proposal_link) {{ Form::label_link($sales_prep->proposal_link, $sales_prep->proposal_link, \App\Helpers\FormComponentHelper::SIZE_SMALL ) }} @endif
@include('shared._website_functionality')
@include('shared.forms._driver_component')
@include('shared.forms._customer_value', ['is_sales_prep' => true, 'col_width' => 8])
@include('super_admin.sales_prep._sales_prep_questions', ['type' => 'read-only'])
@if (\Gate::allows(\App\Providers\AuthServiceProvider::SUPER_ADMIN)) {{ Form::separator_row_bottom('grey-divider') }}
{{ Form::button_link("Edit", action('SalesPrepController@edit', compact('business', 'sales_prep')), 'edit_btn') }}
@endif
@endsection @section('page_script') @include('shared_script._bomb_rating_script') @endsection @section('page_style') {{ HTML::style('/css/bomb_rating.css') }} @endsection