?>
" />
								</div>
								<div class="clearfix"></div>
								<?php 
}
?>
								
							</div>


							<div class="form-group">
								<label>Languages Spoken</label>
								<div class="clearfix"></div>
								<?php 
$dataLanguages = $commonController->getEstablishmentLanguage();
if (!empty($dataLanguages)) {
    for ($index = 0; $index < count($dataLanguages); $index++) {
        $checked = '';
        if (!empty($existingLanguageType) && in_array($index, $existingLanguageType)) {
            $checked = 'checked';
        }
        ?>
											<span class="chk-section">
												<input  style="float:left;" type="checkbox" class="checkbox" id="language_<?php 
        echo $index;
        ?>
" value="<?php 
        echo $index;
        ?>
" name="language_type[]" <?php