
<?php \Laravel\Section::start('content'); ?>
	<div class="container">
		<div class="page-header">
			<h1>Ajouter un groupe de fichier</h1>
		</div>

		<?php echo  Form::open(URL::to_route('filegroups'), 'POST', array('class' => 'form-horizontal','enctype'=>'multipart/form-data')) ; ?>

		<?php echo view('backend::filegroups._form')->with(get_defined_vars())->render(); ?>

		<div class="form-actions">
			<button type="submit" class="btn btn-primary"><?php echo __('admin.creer'); ?></button> 
			<a class="btn" href="<?php echo  URL::to_route('filegroups') ; ?>"><?php echo __('admin.annuler'); ?></a>
		</div>

		<?php echo  Form::close() ; ?>

	</div>
<?php \Laravel\Section::stop(); ?>
<?php echo view('backend::template_default')->with(get_defined_vars())->render(); ?>