{{ Form::label($id, ucfirst($label), array('class' => 'control-label')) }}
@if($enabled)
{{ Form::text($name . '_address', '', array( 'id' => $id . '_address', 'class' => 'form-control', 'maxlength' => 150, 'disabled' => $enabled ? null : 'disabled', 'placeholder' => Lang::get("backend.find_address") )) }}
@endif
{{ Form::label($id . '_lat', Lang::get("backend.latitude"), array('class' => 'control-label pull-left')) }} {{ Form::text($name . '[lat]', $value["lat"], array( 'id' => $id . '_lat', 'class' => 'form-control', 'maxlength' => 50, 'disabled' => $enabled ? null : 'disabled', 'data-toggle' => (isset($errors) && $errors->has($errorLatKey) ? 'tooltip': null), 'title' => (isset($errors) && $errors->has($errorLatKey) ? $errors->first($errorLatKey): null) )) }}
{{ Form::label($id . '_lng', Lang::get("backend.longitude"), array('class' => 'control-label pull-left')) }} {{ Form::text($name . '[lng]', $value["lng"], array( 'id' => $id . '_lng', 'class' => 'form-control', 'maxlength' => 50, 'disabled' => $enabled ? null : 'disabled', 'data-toggle' => (isset($errors) && $errors->has($errorLngKey) ? 'tooltip': null), 'title' => (isset($errors) && $errors->has($errorLngKey) ? $errors->first($errorLngKey): null) )) }}
{{ Form::hidden($name . '[zoom]', $value["zoom"], array('id' => $id . '_zoom')) }}
@if(!empty($info)) {{ $info }} @endif