Exemplo n.º 1
0
			<?php 
echo Form::input('name', $post->rawname, array('class' => 'form-control'));
?>
		</div>
	</div>

	<div class="form-group <?php 
echo isset($errors['type']) ? 'has-error' : '';
?>
">
		<?php 
echo Form::label('type', __('Type'), array('class' => 'control-label col-md-3'));
?>
		<div class="controls col-md-5">
			<?php 
echo Form::select('type', Gleez::types(), $post->type, array('class' => 'form-control'));
?>
			<span class="help-block"><?php 
_e('For what type of content you intend to use categories from this group?');
?>
</span>
		</div>
	</div>

	<div class="form-group <?php 
echo isset($errors['description']) ? 'has-error' : '';
?>
">
		<?php 
echo Form::label('description', __('Description'), array('class' => 'control-label col-md-3'));
?>