{{ Form::label_ex('Address', \App\Helpers\FormComponentHelper::SIZE_MEDIUM, "new_locations[0][address_1]", null) }}
{{ Form::text_placeholder("new_locations[0][address_1]", 'Address Line 1', 12, '', $id) }}
{{ Form::text_placeholder("new_locations[0][address_2]", 'Address Line 2', 12, '', $id) }}
{{ Form::text_placeholder("new_locations[0][city]", 'City', 6, '', $id) }}
{{ Form::text_placeholder("new_locations[0][state]", 'State', 3, '', $id) }}
{{ Form::text_placeholder("new_locations[0][postal]", 'ZIP', 3, '', $id) }}
{{ Form::label_ex('Phone 1',\App\Helpers\FormComponentHelper::SIZE_MEDIUM,"new_locations[0][phone_1]") }}
{{ Form::text_placeholder("new_locations[0][phone_1]", 'Business Phone', 6, '', $id) }}
{{ Form::label_ex('Phone 2',\App\Helpers\FormComponentHelper::SIZE_MEDIUM,"new_locations[0][phone_1]") }}
{{ Form::text_placeholder("new_locations[0][phone_2]", 'Business Phone 2', 6, '', $id) }}
{{ Form:: label_ex('Time Zone',\App\Helpers\FormComponentHelper::SIZE_MEDIUM,"new_locations[0][timezone]") }}
{{ Form::select_ex("new_locations[0][timezone]", 0, \App\Helpers\TimezoneHelper::timezone_select(), 6, null, null, $id, 'Select a Time Zone') }}
{{ Form:: label_ex('Type',\App\Helpers\FormComponentHelper::SIZE_MEDIUM,null) }}
{{Form::hidden("new_locations[0][mobile]",false)}}
{{Form::hidden("new_locations[0][storefront]",false)}}
{{Form::hidden("new_locations[0][online]",false)}}
{{ Form::checkbox_ex("new_locations[0][mobile]", 0, "Mobile Business", null, $id, 4) }}
{{ Form::checkbox_ex("new_locations[0][storefront]", 0, "Storefront", null, $id, 4) }}
{{ Form::checkbox_ex("new_locations[0][online]", 0, "Online Only", null, $id, 4) }}