{{ Form::label_ex('Address', \App\Helpers\FormComponentHelper::SIZE_MEDIUM, "new_locations[{$i}][address_1]", null) }}
{{ Form::text_placeholder("new_locations[{$i}][address_1]", 'Address Line 1', 12, '', $id) }}
{{ Form::text_placeholder("new_locations[{$i}][address_2]", 'Address Line 2', 12, '', $id) }}
{{ Form::text_placeholder("new_locations[{$i}][city]", 'City', 6, '', $id) }}
{{ Form::text_placeholder("new_locations[{$i}][state]", 'State', 3, '', $id) }}
{{ Form::text_placeholder("new_locations[{$i}][postal]", 'ZIP', 3, '', $id) }}
{{ Form::label_ex('Phone 1',\App\Helpers\FormComponentHelper::SIZE_MEDIUM,"new_locations[{$i}][phone_1]") }}
{{ Form::text_placeholder("new_locations[{$i}][phone_1]", 'Business Phone 1', 6, '', $id) }}
{{ Form::label_ex('Phone 2',\App\Helpers\FormComponentHelper::SIZE_MEDIUM,"new_locations[{$i}][phone_1]") }}
{{ Form::text_placeholder("new_locations[{$i}][phone_2]", 'Business Phone 2', 6, '', $id) }}
{{ Form:: label_ex('Time Zone',\App\Helpers\FormComponentHelper::SIZE_MEDIUM,"new_locations[{$i}][timezone]") }}
{{ Form::select_ex("new_locations[{$i}][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[{$i}][mobile]",false)}}
{{Form::hidden("new_locations[{$i}][storefront]",false)}}
{{Form::hidden("new_locations[{$i}][online]",false)}}
{{ Form::checkbox_ex("new_locations[{$i}][mobile]", $location['mobile'], "Mobile Business", null, $id, 4) }}
{{ Form::checkbox_ex("new_locations[{$i}][storefront]", $location['storefront'], "Storefront", null, $id, 4) }}
{{ Form::checkbox_ex("new_locations[{$i}][online]", $location['online'], "Online Only", null, $id, 4) }}