setting.html 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <!-- Content Wrapper. Contains page content -->
  2. <div class="content-wrapper">
  3. <!-- Content Header (Page header) -->
  4. <section class="content-header">
  5. <h1>
  6. User Profile
  7. </h1>
  8. <ol class="breadcrumb">
  9. <li><a href="#"><i class="fa fa-dashboard"></i> Dashboard</a></li>
  10. <li class="active">Profile</li>
  11. </ol>
  12. </section>
  13. <!-- Main content -->
  14. <section class="content">
  15. <div class="row">
  16. <div class="col-md-4">
  17. <!-- Profile Image -->
  18. <div class="box box-primary">
  19. <div class="box-body box-profile">
  20. <img class="profile-user-img img-responsive img-circle" src="http://i.imgur.com/TbL3fe6.png" alt="User profile picture">
  21. <h3 class="profile-username text-center">{{ @me->firstname }} {{ @me->lastname }}</h3>
  22. <p class="text-muted text-center">{{ @me->type==1?'Admin':'Reseller' }}</p>
  23. <ul class="list-group list-group-unbordered">
  24. <li class="list-group-item">
  25. <b>Username</b> <a class="pull-right">{{ @me->username }}</a>
  26. </li>
  27. <li class="list-group-item">
  28. <b>Email</b> <a class="pull-right">{{ @me->email }}</a>
  29. </li>
  30. <li class="list-group-item">
  31. <b>Balance RM</b> <a class="pull-right">{{ @me->saldo }}</a>
  32. </li>
  33. </ul>
  34. </div>
  35. <!-- /.box-body -->
  36. </div>
  37. <!-- /.box -->
  38. </div>
  39. <!-- /.col -->
  40. <div class="col-md-8">
  41. <check if="{{ @message }}">
  42. <div class="alert alert-danger alert-dismissible">
  43. <button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
  44. <h4><i class="icon fa fa-warning"></i>Alert!</h4>
  45. {{ @message['data'] }}
  46. </div>
  47. </check>
  48. <!--
  49. <div class="box box-danger">
  50. <div class="box-header with-border">
  51. <i class="fa fa-cog fa-spin"></i><h3 class="box-title">Change Password</h3><h4>Disabled by Admin</4>
  52. </div>
  53. <!-- /.box-header -->
  54. <!-- form start -->
  55. <!--<form role="form" action="{{ @URI }}" method="POST">
  56. <div class="box-body">
  57. <div class="form-group">
  58. <label>Old Password</label>
  59. <input class="form-control" placeholder="Old Password" name="oldpass" type="password" required>
  60. </div>
  61. <div class="form-group">
  62. <label>New Password</label>
  63. <input class="form-control" placeholder="New Password" name="password" type="password" required>
  64. </div>
  65. <div class="form-group">
  66. <label>Re-enter New Password</label>
  67. <input class="form-control" placeholder="Re-enter New Password" name="password_confirmation" type="password" required>
  68. </div>
  69. </div>&nbsp;&nbsp;
  70. <button type="submit" class="btn btn-primary fa fa-cubes"> CHANGE</button> -->
  71. <!-- /.box-body -->
  72. </form>
  73. <div class="box-footer">
  74. </div>
  75. </div>
  76. <!-- /.box -->
  77. </div>
  78. </div>
  79. </section>
  80. <!-- /.content -->
  81. </div>
  82. <!-- /.content-wrapper -->