

<?php $__env->startSection('content'); ?> 

	<form action="<?php echo URL::route('account-create-post'); ?>" method="post">
		<ul>
			<li>
				Email: <input type="text" name="email" value="<?php echo (Input::old('email')) ? Input::old('email') : ''; ?>">
				<?php if($errors->has('email')): ?>
					<?php echo $errors->first('email'); ?>

				<?php endif; ?>	
			</li>
			<li>
				Username: <input type="text" name="username" value="<?php echo (Input::old('username')) ? Input::old('username') : ''; ?>">
				<?php if($errors->has('username')): ?>
					<?php echo $errors->first('username'); ?>

				<?php endif; ?>
			</li>
			<li>
				Password: <input type="password" name="password">
				<?php if($errors->has('password')): ?>
					<?php echo $errors->first('password'); ?>

				<?php endif; ?>
			</li>
			<li>
				Password again: <input type="password" name="password_again">
				<?php if($errors->has('password_again')): ?>
					<?php echo $errors->first('password_again'); ?>

				<?php endif; ?>
			</li>
			<li>
				<button type="submit">Send</button>
				<?php echo Form::token(); ?>

			</li> 
		</ul> 
	</form>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('main', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>