<div class="form-group<?php if($errors->has('name_'.$language->short)) { echo ' has-error'; } ?>">
    <label class="col-md-3 control-label" for="<?php echo 'name_'.$language->short; ?>">Nom</label>
    <div class="col-md-9">
        <?php echo Form::text('name_'.$language->short, null, ['class' => 'form-control', 'id' => 'name_'.$language->short]); ?>

        <?php echo $errors->first('name_'.$language->short, '<span class="help-block">:message</span>'); ?>

    </div>
</div>
<div class="form-group<?php if($errors->has('keywords_'.$language->short)) { echo ' has-error'; } ?>">
    <label class="col-md-3 control-label" for="<?php echo 'keywords_'.$language->short; ?>">Mots Clés</label>
    <div class="col-md-9">
        <?php echo Form::text('keywords_'.$language->short, null, ['class' => 'form-control', 'id' => 'keywords_'.$language->short]); ?>

        <?php echo $errors->first('keywords_'.$language->short, '<span class="help-block">:message</span>'); ?>

    </div>
</div>
<div class="form-group<?php if($errors->has('description_'.$language->short)) { echo ' has-error'; } ?>">
    <label class="col-md-3 control-label" for="<?php echo 'description_'.$language->short; ?>">Description</label>
    <div class="col-md-9">
        <?php echo Form::textarea('description_'.$language->short, null, ['class' => 'form-control', 'id' => 'description_'.$language->short]); ?>

        <?php echo $errors->first('description_'.$language->short, '<span class="help-block">:message</span>'); ?>

    </div>
</div>