@extends('layouts.master') @section('page_title',$website_request->website_request_name) @section('content')
{{ Form::page_header($website_request->website_request_name, "hours") }}
@include('website._website_sidebar', compact('website_request'))
{{ Form::label_ex('Details', \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }} {{ Form::row_label_inline('Website Name', $website_request->website_request_name, null, 4, 7, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} {{ Form::row_label_inline('Production URL', $website_request->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->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::row_label_inline('Industry', $website_request->drivers, null, 4, 7, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} {{ Form::separator_row_bottom('grey-divider') }} {{ Form::label_ex('Business Profile', \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }} {{ Form::row_label_inline('Organization Type',$website_request->org_type_map , null, 4, 7, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} {{ Form::label_styled('Organization Description', null, \App\Helpers\FormComponentHelper::SIZE_MEDIUM, 4) }} {{ Form::textarea_styled('organization_desc', $website_request->org_desc, 'brand-brief-textarea', true, 7) }} {{ Form::label_styled('Organization Goals', null, \App\Helpers\FormComponentHelper::SIZE_MEDIUM, 4) }} {{ Form::textarea_styled('organization_goals', $website_request->org_goals, 'brand-brief-textarea', true, 7) }}
{{ Form::label_ex("Business Personality",\App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::label_grey("The client selected the following keywords during their visual personality test: " . $visual_personality_words, null, null, \App\Helpers\FormComponentHelper::SIZE_SMALL) }} {{ Form::textarea_styled('organization_goals', $website_request->brand_keywords, 'brand-brief-textarea', true) }}
{{ Form::separator_row_bottom('grey-divider') }} {{ Form::label_ex('Customer Profile', \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }} {{ Form::row_label_inline('Customer Gender',\App\Models\Website_Request::$target_demographic_map[$website_request->target_demo] , null, 4, 7, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} {{ Form::row_label_inline('Age Group', \App\Models\Website_Request::$age_group_map[$website_request->age_group], null, 4, 7, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} {{ Form::row_label_inline('Customer Demographic',$website_request->customer_demographic, null, 4, 7, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::open(['url' => action('WebsiteRequestController@export_content_plan', compact('website_request'))]) }}
@if(\App\Providers\AuthServiceProvider::user_has_permission([\App\Providers\AuthServiceProvider::GATE_CONTENT_MANAGER, \App\Providers\AuthServiceProvider::GATE_CONTENT_STRATEGIST])) {{ Form::button_save(App\Http\Controllers\WebsiteRequestController::EXPORT_CONTENT_PLAN, "action") }} @endif @if(\App\Providers\AuthServiceProvider::user_has_permission([\App\Providers\AuthServiceProvider::GATE_DESIGN_MANAGER, \App\Providers\AuthServiceProvider::GATE_CONTENT_STRATEGIST])) {{ Form::button_save(App\Http\Controllers\WebsiteRequestController::EXPORT_CONTENT_PLAN_FOR_DEVELOPER, "action") }} @endif @if (\App\Providers\AuthServiceProvider::user_has_permission(\App\Providers\AuthServiceProvider::CSMCCT)) {{ Form::button_link('Edit', $edit_url) }} @endif
{{ Form::close() }}
@endsection @section('page_script') @include('shared_script._website_sidebar_script') @endsection @section('page_style') @endsection