{{ Form::hidden('client', $fuse_org_client->client) }}
{{ Form::row_text_inline('first_name', 'First Name', $fuse_org_client->first_name, 3, 6, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::row_text_inline('last_name', 'Last Name', $fuse_org_client->last_name, 3, 6, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::row_text_inline('company', 'Company', $fuse_org_client->company, 3, 6, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
@if(isset($fuse_org_client->client))
{{ Form::hidden('prospect_email', $fuse_org_client->prospect_email) }}
{{ Form::row_label_inline('Email', $fuse_org_client->prospect_email, 'prospect-email-label', 3, 6, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
@else
{{ Form::row_text_inline('prospect_email', 'Email', $fuse_org_client->prospect_email, 3, 6, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
@endif
{{ Form::label_ex('Address', \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::text_placeholder("address_1", 'Address Line 1', 12, $fuse_org_client->address_1) }}
{{ Form::text_placeholder("address_2", 'Address Line 2', 12, $fuse_org_client->address_2) }}
{{ Form::text_placeholder("city", 'City', 6, $fuse_org_client->city) }}
{{ Form::text_placeholder("state", 'State', 3, $fuse_org_client->state) }}
{{ Form::text_placeholder("postal", 'ZIP', 3, $fuse_org_client->postal) }}
{{ Form::label_ex('Phone 1', \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::text_placeholder("phone_1", 'Phone 1', 6, $fuse_org_client->phone_1) }}
{{ Form::label_ex('Phone 2', \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::text_placeholder("phone_2", 'Phone 2', 6, $fuse_org_client->phone_2) }}
{{ Form::label_ex('Follow-Ups', \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::select_ex('follow_up_interest_id', $fuse_org_client->follow_up_interest_id, $fuse_org_client->follow_up_select, 6, null, null, null, 'Select Follow Up') }}