Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1. @extends('layouts.base')
  2.  
  3. @section('content')
  4. <div class="section no-pad-bot" id="index-banner">
  5. <div class="container">
  6. <br><br>
  7. <h1 class="header center orange-text">SIGN UP</h1>
  8. <div class="row center">
  9. <h5 class="header col s12 light">GTB ONLINE EXAM PLATFORM</h5>
  10. </div>
  11.  
  12. <form class="col s12" action="{{ url('/register') }}" method="POST">
  13. <div class="row">
  14. <div class="input-field col s6">
  15. <input id="first_name" type="text" class="validate" name="first_name">
  16. <label for="first_name">First Name</label>
  17. @if ($errors->has('first_name'))
  18. <span class="help-block">
  19. <strong>{{ $errors->first('name') }}</strong>
  20. </span>
  21. @endif
  22. </div>
  23. <div class="input-field col s6">
  24. <input id="last_name" type="text" class="validate" name="last_name">
  25. <label for="last_name">Last Name</label>
  26. @if ($errors->has('last_name'))
  27. <span class="help-block">
  28. <strong>{{ $errors->first('name') }}</strong>
  29. </span>
  30. @endif
  31. </div>
  32. </div>
  33. <div class="row">
  34. <div class="input-field col s12">
  35. <input id="email" type="email" class="validate" name="email">
  36. <label for="email" data-error="wrong" data-success="right">Email</label>
  37. @if ($errors->has('email'))
  38. <span class="help-block">
  39. <strong>{{ $errors->first('email') }}</strong>
  40. </span>
  41. @endif
  42. </div>
  43. </div>
  44. <div class="row">
  45. <div class="input-field col s12">
  46. <input id="password" type="password" class="validate" name="password">
  47. <label for="password">Password</label>
  48. @if ($errors->has('password'))
  49. <span class="help-block">
  50. <strong>{{ $errors->first('password') }}</strong>
  51. </span>
  52. @endif
  53. </div>
  54. </div>
  55. <div class="row">
  56. <div class="input-field col s12">
  57. <input id="password" type="password" class="validate" name="password_confirmation">
  58. <label for="password">Confirm Password</label>
  59. </div>
  60. </div>
  61. </div>
  62.  
  63. <div class="row center">
  64. <button class="btn waves-effect waves- orange darken-4" type="submit">START
  65. </button>
  66. </div>
  67. </form>
  68.  
  69. <br><br>
  70. <div class="row center">
  71. <h5>Please note that once you click the Login the Exams starts</h5>
  72. </div>
  73. </div>
  74. </div>
  75.  
  76. <br><br>
  77. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement