<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('title_'.$language->short)) { echo ' has-error'; } ?>">
    <label class="col-md-3 control-label" for="<?php echo 'title_'.$language->short; ?>">Titre</label>
    <div class="col-md-9">
        <?php echo Form::text('title_'.$language->short, null, ['class' => 'form-control', 'id' => 'title_'.$language->short]); ?>

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

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

        <?php echo $errors->first('url_'.$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, ['rows'=>'3', 'class' => 'form-control', 'id' => 'description_'.$language->short]); ?>

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

    </div>
</div>
<div class="form-group">
    <div class="col-xs-12">
        <textarea class="form-control" id="editor<?php echo $language->id; ?>" name="text_<?php echo $language->short; ?>" rows="25"><?php echo Input::old('text_'.$language->short, isset($mypage) ? $mypage['text_'.$language->short] : null); ?></textarea>
    </div>
</div>