<table class="table table-striped">
	<tr <?php if($errors->first('label')) echo 'class="error"'; ?>>
		<td>Article</td>
		<td>
			<?php echo  Form::textarea('label', Input::old('label', (isset($article) ? $article->label : NULL)),array('style'=>'width:98%;height:200px')) ; ?>
			<?php echo  $errors->first('label', '<span class="help-inline">:message</span>') ; ?>
		</td>
	</tr>
	<tr <?php if($errors->first('prix')) echo 'class="error"'; ?>>
		<td>Prix</td>
		<td>
			<div class="input-append">
				<?php echo  Form::text('prix', Input::old('prix', (isset($article) ? $article->prix : NULL))) ; ?>
				<span class="add-on">&euro; HT</span>
			</div>
		</td>
	</tr>
</table>