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