
<?php \Laravel\Section::start('content'); ?>
<div class="container">

	<?php echo  Form::open(null, 'POST', array('class' => 'form-signin')) ; ?>
		<h2 class="form-signin-heading"><?php echo __('admin.gestion'); ?></h2>
		<?php if (Session::has('login_error')): ?>
		<p class="text-error">
			<strong><?php echo __('admin.erreur_identification'); ?></strong>
		</p>
		<?php endif; ?>
		<?php echo  Form::text('username', Input::old('email'), array('placeholder' => 'Email', 'class' => 'input-block-level')) ; ?>
		<?php echo  Form::password('password', array('placeholder' => 'Password', 'class' => 'input-block-level')) ; ?>
		<label class="checkbox">
          <input type="checkbox" name="remember" value="rememberme"> <?php echo __('admin.enregistrer'); ?>
        </label>
		<button class="btn btn-large btn-primary" type="submit"><?php echo __('admin.identification'); ?></button>
	<?php echo  Form::close() ; ?>

</div>
<?php \Laravel\Section::stop(); ?>
<?php echo view('backend::template_login')->with(get_defined_vars())->render(); ?>