<table class="table table-striped">
	<tr <?php if($errors->first('name')) echo 'class="error"'; ?>>
		<td>Nom de la taille à ajouter (S, M, ...)</td>
		<td>
			<?php echo  Form::text('name', Input::old('name', (isset($taille) ? $taille->name : NULL))) ; ?>
			<?php echo  $errors->first('name', '<span class="help-inline">:message</span>') ; ?>
		</td>
	</tr>
</table>