<!DOCTYPE html>
<html>
<head>
<title>Prestige Credit</title>
<!--/tags -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false);
		function hideURLbar(){ window.scrollTo(0,1); } </script>
<!--//tags -->
<link href="/css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<link href="/css/team.css" rel="stylesheet" type="text/css" media="all" />
<link href="/css/style.css" rel="stylesheet" type="text/css" media="all" />
<link href="/css/font-awesome.css" rel="stylesheet">
<link href="/css/app.css" rel="stylesheet">
<!-- //for bootstrap working -->
<link href="//fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800" rel="stylesheet">
<link href='//fonts.googleapis.com/css?family=Lato:400,100,100italic,300,300italic,400italic,700,900,900italic,700italic' rel='stylesheet' type='text/css'>
</head>
<body>
<!-- header -->
<div class="header" id="home">
	<div class="container">
		<ul>
			<li><i class="fa fa-phone" aria-hidden="true"></i> Call : (011) 022 0642</li>
			<li><i class="fa fa-envelope-o" aria-hidden="true"></i> <a href="mailto:info@prestigecredit.co.za">info@prestigecredit.co.za</a></li>
		</ul>
	</div>
</div>
<!-- //header -->
<!-- header-bot -->
<div class="header-bot">
	<div class="header-bot_inner_wthreeinfo_header_mid">
		<!-- header-bot -->
			<div class="col-md-12 logo_agile">
				<img width="30%" src="/img/pcg.png" />
			</div>
		</div>
		<div class="clearfix"></div>
	</div>
</div>


<nav>
  <ul class="container ul-reset">
    <li><a href='/management-dashboard'>Home</a></li>
    <li><a href='/manage-users'>Manage Users</a></li>
    <li><a href='/manage-billing'>Manage Billing</a></li>
    <li><a href='/transaction-list'>Transaction List</a></li>

  </ul><!-- .container .ul-reset -->
</nav>

	<h1>Edit user</h1>

 <?php echo Form::model($user, array('route' => ['users.edit-user', $user->id], 'files' => true)); ?>

    <div class="row">
         <div class="col-md-6">
            <label><i class="fa fa-user" aria-hidden="true"></i>Full Name <small class="red"><?php echo $errors->first('name'); ?></small></label>
             <?php echo Form::text('name'); ?>

         </div>
         <div class="col-md-6">
            <label><i class="fa fa-envelope" aria-hidden="true"></i> Email <small class="red"><?php echo $errors->first('email'); ?></small></label>
            <?php echo Form::email('email'); ?>

         </div>

            <button style="display:block;margin-left: auto;margin-right:auto;" class="myButton" type="submit">Update Details</button>
    </div>
<?php echo Form::close(); ?>


</body>
</html>

