@extends('layouts.master') @section('page_title', 'Edit Client Summary') @section('content')
{{ Form::page_header("Edit Client Summary", "business") }} {{ Form::open(['url' => action('SuperAdminBusinessController@post_edit_client_summary',compact('business'))]) }}
{{ Form::row_textarea_inline('client_keypoints', 'Client Keypoints', $business->client_keypoints, 2, 8, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} {{ Form::row_textarea_inline('goals_and_strategy', 'Goals and Strategy', $business->goals_and_strategy, 2, 8, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} {{ Form::row_text_inline('strategic_value', 'Strategic Value', $business->strategic_value, 2, 8, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::button_save() }} {{ Form::button_link("Cancel", action('SuperAdminBusinessController@client_summary',compact('business'))) }}
@endsection