@extends('layouts.master') @section('page_title', $page_title) @section('content')
{{ Form::page_header($page_title, "paper_stack") }} {{ Form::open(['url' => $post_url]) }}
{{ Form::row_select_inline('business_linkedin_campaign', 'Campaign', $business_linkedin_weekly->business_linkedin_campaign, $business_linkedin_weekly->campaign_select(), 2, 8, \App\Helpers\FormComponentHelper::SIZE_MEDIUM, null, 'Select', 'campaign-search-select') }} {{ Form::row_date_inline('info_date', 'Week Of', $business_linkedin_weekly->info_date, 2, 4, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::label_ex('Requests Sent', \App\Helpers\FormComponentHelper::SIZE_MEDIUM, 'sent', 2) }} {{ Form::number_ex('sent', $business_linkedin_weekly->sent, 2) }}
{{ Form::label_ex('Accepted', \App\Helpers\FormComponentHelper::SIZE_MEDIUM, 'accepted', 2) }} {{ Form::number_ex('accepted', $business_linkedin_weekly->accepted, 2) }}
{{ Form::label_ex('Replied to Connection Message', \App\Helpers\FormComponentHelper::SIZE_MEDIUM, 'replied', 2) }} {{ Form::number_ex('replied', $business_linkedin_weekly->replied, 2) }}
{{ Form::label_ex('Replied to Welcome and Other Messages', \App\Helpers\FormComponentHelper::SIZE_MEDIUM, 'replied_to_welcome', 2) }} {{ Form::number_ex('replied_to_welcome', $business_linkedin_weekly->replied_to_welcome, 2) }}
{{ Form::label_ex('Leads', \App\Helpers\FormComponentHelper::SIZE_MEDIUM, 'leads', 2) }} {{ Form::number_ex('leads', $business_linkedin_weekly->leads, 2) }}
{{ Form::label_ex('Notes', \App\Helpers\FormComponentHelper::SIZE_MEDIUM, 'notes', 2) }} {{ Form::textarea_ex('notes', $business_linkedin_weekly->notes, 10) }}
{{ Form::separator_row_bottom("grey-divider") }}
{{ Form::button_save() }} {{ Form::button_link('Cancel', action('BusinessLinkedInWeeklyController@view_all', compact('business')), 'cancel_btn') }}
@endsection @section('page_script') {{ Html::script('/js/moment.min.js') }} {{ Html::script('/js/daterangepicker.js') }} @endsection @section('page_style') {{ Html::style('/css/daterangepicker.css') }} {{ Html::style('/css/daterangepicker_custom.css') }} @endsection