{{ Form::hidden('event_type', \App\Models\Campaign_Event::CAMPAIGN_EVENT_TYPE_ARTICLE) }}
{{ Form::hidden('campaign', $campaign->campaign) }}
{{ Form::hidden('business', $business->business) }}
{{ Form::hidden('campaign_event', $campaign_event->campaign_event) }}
{{ Form::hidden('creation_type', $article->creation_type, ['id' => 'creation_type']) }}
{{ Form::button_ex('Create from Scratch', 'create_article('.\App\Models\Article::CREATION_TYPE_SCRATCH.');', 'create_from_scratch') }}
{{ Form::button_ex('Create from Content', 'create_article('.\App\Models\Article::CREATION_TYPE_CONTENT.');', 'create_from_content') }}
{{ Form::row_text_inline('event_name', 'Event Name', $campaign_event->event_name, 3, 9, \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }}
{{ Form::row_textarea_inline('directions', 'Directions', $article->directions, 3, 9, \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }}
{{ Form::row_textarea_inline('key_points', 'Key Points', $article->key_points, 3, 9, \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }}
{{ Form::row_text_inline('subject_line', 'Subject Line', $article->subject_line, 3, 9, \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }}
@if ($campaign_event->can_edit_article())
{{ Form::row_textarea_inline('article_body', 'Article Body', $article->article_body, 3, 9, \App\Helpers\FormComponentHelper::SIZE_LARGE) }}
{{ Form::row_textarea_inline('excerpt', 'Excerpt', $article->excerpt, 3, 9, \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }}
@else
{{ Form::hidden('article_body', $article->article_body) }}
{{ Form::hidden('excerpt', $article->excerpt) }}
@endif
@if ($campaign_event->can_edit_article())
{{ Form::row_textarea_inline('call_to_action', 'Call to action', $article->call_to_action, 3, 9, \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }}
@else
{{ Form::hidden('call_to_action', $article->call_to_action) }}
@endif
@if ($campaign_event->can_edit_article())
{{ Form::row_textarea_inline('pull_quote', 'Pull Quote', $article->pull_quote, 3, 9, \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }}
@else
{{ Form::hidden('pull_quote', $article->pull_quote) }}
{{ Form::row_label_inline("", "Please edit article body, excerpt, call to action and pull quote in the format", "",
3, 0, \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }}
@endif