@extends('layouts.master') @section('page_title', 'Client Summary') @section('content')
{{ Form::page_header("Client Summary", "sourcedata") }}
{{ Form::row_label_inline('Monthly Revenue', \App\Helpers\Format_Helper::format_int_currency($monthly_revenue), null, 3, 6, \App\Helpers\FormComponentHelper::SIZE_LARGE) }} {{ Form::row_label_inline('Strategic Value', \App\Helpers\Format_Helper::format_int_currency($business->strategic_value), null, 3, 6, \App\Helpers\FormComponentHelper::SIZE_LARGE) }} {{ Form::row_label_inline(\App\Models\Role::LABEL_MARKETING_STRATEGIST, $marketing_strategist, 'marketing-strategist-label', 3, 6, \App\Helpers\FormComponentHelper::SIZE_LARGE) }}
{{ Form::label_styled('Client Keypoints', null, \App\Helpers\FormComponentHelper::SIZE_LARGE) }} @if ($business->client_keypoints) {{ Form::textarea_styled('client_keypoints', $business->client_keypoints, 'client-summary-notes', true) }} @endif
{{ Form::label_styled($business->keypoints_change_history_label,'client_keypoints_change_history_label', \App\Helpers\FormComponentHelper::SIZE_SMALL) }}
{{ Form::label_styled('Goals and Strategy', null, \App\Helpers\FormComponentHelper::SIZE_LARGE) }} @if ($business->goals_and_strategy) {{ Form::textarea_styled('goals_and_strategy', $business->goals_and_strategy, 'client-summary-notes', true) }} @endif
{{ Form::label_styled($business->strategy_change_history_label,'goals_strategy_change_history_label', \App\Helpers\FormComponentHelper::SIZE_SMALL) }}
{{ Form::button_link('Edit', action('SuperAdminBusinessController@edit_client_summary', compact('business')), 'edit_client_summary_btn') }}
{{ Form::label_title("Products and Services") }}
@include('search._search_grid_wrapper')
{{ Form::button_link('Add a new product/service', action('SuperAdminBusinessController@add_business_product_service', compact('business'))) }}
@include('business._business_contacts', compact('recurly_account', 'business_contact_column_set'))
@endsection @section('page_script') @endsection @section('page_style') @endsection