user-signup.blade.php 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. @extends('auth.master')
  2. @section('content')
  3. <div class="d-flex justify-content-center align-items-center h-100">
  4. <!-- Registration form -->
  5. <form action="{{ route('user-signup.store') }}" method="POST" class="login-form full_width form-prevent-multiple-submits">
  6. @csrf
  7. <input type="hidden" name="mobile_no" value="{{ session('smsCert.mobile_no') }}">
  8. <div class="card mb-0">
  9. <div class="card-body">
  10. <div class="text-center mb-3">
  11. <i class="icon-plus3 icon-2x text-success border-success border-3 rounded-round p-3 mb-3 mt-1"></i>
  12. <h5 class="mb-0">Create account</h5>
  13. <span class="d-block text-muted">All fields are required</span>
  14. </div>
  15. <div class="form-group text-center text-muted content-divider">
  16. <span class="px-2">Your credentials</span>
  17. </div>
  18. <div class="form-group form-group-feedback form-group-feedback-left">
  19. <input type="text" name="email" class="form-control" placeholder="Email">
  20. <div class="form-control-feedback">
  21. <i class="icon-user-check text-muted"></i>
  22. </div>
  23. @error('email')
  24. <span class="form-text text-danger"><i class="icon-cancel-circle2 mr-2"></i>{{ $message }}</span>
  25. @enderror
  26. </div>
  27. <div class="form-group form-group-feedback form-group-feedback-left">
  28. <input type="password" name="password" class="form-control" placeholder="Password">
  29. <div class="form-control-feedback">
  30. <i class="icon-user-lock text-muted"></i>
  31. </div>
  32. </div>
  33. <div class="form-group form-group-feedback form-group-feedback-left">
  34. <input type="password" name="password_confirmation" class="form-control" placeholder="Confirm Password">
  35. <div class="form-control-feedback">
  36. <i class="icon-user-lock text-muted"></i>
  37. </div>
  38. @error('password')
  39. <span class="form-text text-danger"><i class="icon-cancel-circle2 mr-2"></i>{{ $message }}</span>
  40. @enderror
  41. </div>
  42. <div class="mb-3 text-center text-danger">
  43. <em>{{ $policyDesc }}</em>
  44. </div>
  45. <button type="submit" class="btn bg-teal-400 btn-block text-white button-prevent-multiple-submits">
  46. <i class="spinner fa fa-spinner fa-spin"></i>
  47. Register
  48. <i class="icon-circle-right2 ml-2"></i>
  49. </button>
  50. </div>
  51. </div>
  52. </form>
  53. <!-- /registration form -->
  54. </div>
  55. @endsection
  56. @push('js')
  57. <script>
  58. </script>
  59. @endpush