@extends('layouts.master') @section('page_title',$website_request->website_request ? $website_request->website_request_name : 'Website Request') @section('content') {{ Form::model($website_request,['url' => $post_url]) }}
{{ Form::page_header($website_request->website_request ? $website_request->website_request_name : 'Website Request', "hours") }}
@include('website._website_sidebar', compact('website_request'))
{{ Form::label_ex('Details', \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }} {{ Form::row_text_inline('website_request_name', 'Website Name', null, 4, 7, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} {{ Form::row_text_inline('production_url', 'Production URL', null, 4, 7, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} @include('website._brand_brief_external_link_row', ['link' => $business->website,'label' => 'Existing Site']) {{ Form::row_label_inline('Launch Review Date', $business->_business_sales_prep !== null && $business->_business_sales_prep->launch_review_date !== null ? \Carbon\Carbon::parse($business->_business_sales_prep->launch_review_date)->format('m/d/Y') : "", null, 4, 7, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} @include('website._brand_brief_external_link_row',[ 'link' => $website_request->asset_folder_link,'label' => 'Asset Folder'])
{{ Form::label_title('Intake Recordings',\App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::button_link('RECORDINGS IN FUSE', action('BusinessIntakeController@business_recording', compact('business')), 'grid_header_btn',\App\Helpers\FormComponentHelper::SIZE_TINY) }}
{{ Form::row_label_inline(\App\Models\Role::LABEL_MARKETING_STRATEGIST, $selected_team[\App\Providers\AuthServiceProvider::GATE_MARKETING_STRATEGIST], null, 4, 7, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::label_title('Industry', \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::label_styled($website_request->_industry ? $website_request->_industry->industry_name : '', 'second-label', \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::separator_row_bottom('grey-divider') }} {{ Form::label_ex('Business Profile', \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }} {{ Form::row_select_inline('org_type', 'Organization Type', $website_request->org_type, $website_request->organization_type_map, 4, 7,\App\Helpers\FormComponentHelper::SIZE_MEDIUM, null, 'Select One') }} @include("website._website_request_textarea_group",[ "title" => "Description", "description" => "Provides a summary description of the organization including products, services, mission, target customer etc.", "name" => "org_desc", "value" => $website_request->org_desc, "type" => "tooltip" ]) @include("website._website_request_textarea_group",[ "title" => "Goals", "description" => "Describes the goals of the organization and what they hope to achieve with the site in terms of the image they project and the products or services they provide to their customers.", "name" => "org_goals", "value" => $website_request->org_goals, "type" => "tooltip" ]) @include("website._website_request_textarea_group",[ "title" => "Business Personality", "description" => "The client selected the following keywords during their visual personality test: " . $visual_personality_words, "name" => "brand_keywords", "value" => $website_request->brand_keywords, "type" => "above_text" ]) {{ Form::separator_row_bottom('grey-divider') }} {{ Form::label_ex('Customer Profile', \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }} {{ Form::row_select_inline('target_demo', 'Customer Gender', $website_request->target_demo, $website_request->target_demo_map, 4, 7,\App\Helpers\FormComponentHelper::SIZE_MEDIUM, null, 'Select One') }} {{ Form::row_select_inline('age_group', 'Age Group', $website_request->age_group, $website_request->age_group_map, 4, 7,\App\Helpers\FormComponentHelper::SIZE_MEDIUM, null, 'Select One') }}
{{ Form::label_ex('Customer Demographic', \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
@include("website._website_request_checkbox_with_hidden",[ "name" => "spm", "title" => "Single Professional Male" ]) @include("website._website_request_checkbox_with_hidden",[ "name" => "spf", "title" => "Single Professional Female" ]) @include("website._website_request_checkbox_with_hidden",[ "name" => "ymnk", "title" => "Young Married - No kids" ]) @include("website._website_request_checkbox_with_hidden",[ "name" => "mwk", "title" => "Married W/Kids" ]) @include("website._website_request_checkbox_with_hidden",[ "name" => "dink", "title" => "Double Income No Kids" ]) @include("website._website_request_checkbox_with_hidden",[ "name" => "empty_nest", "title" => "Empty Nesters" ]) @include("website._website_request_checkbox_with_hidden",[ "name" => "genx", "title" => "GenX" ]) @include("website._website_request_checkbox_with_hidden",[ "name" => "millennial", "title" => "Millennial" ]) @include("website._website_request_checkbox_with_hidden",[ "name" => "baby_boomer", "title" => "Baby Boomer"]) @include("website._website_request_checkbox_with_hidden",[ "name" => "see_comment", "title" => "See Comment","onchange" => "see_comment_change()"]) {{ Form::textarea_ex("demo_comment", $website_request->demo_comment,null,null,"demo_comment") }}
{{ Form::button_save() }} @if($errors->any()) {{ Form::button_link('Cancel', $cancel_url) }} @else {{ Form::button_cancel() }} @endif
{{ Form::close() }} @endsection @section('page_script') @include('shared_script._website_sidebar_script') @endsection @section('page_style') @endsection