account-setup.blade.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. @extends('layouts.login')
  2. @section('content')
  3. <div id="formView" class="blue-card p-4">
  4. <form action="{{route('submit-account-setup')}}" method="post">
  5. <div class="text-center d-flex align-items-center my-3">
  6. <img src="/img/icon.svg" alt="Logo" height="35">
  7. <h5 class="font-weight-bold ml-2 mb-0">Account Setup</h5>
  8. </div>
  9. <p>Enter your details below.</p>
  10. @csrf
  11. @if(session('message'))
  12. <div class="alert alert-info">{{session('message')}}</div>
  13. @endif
  14. <div class="form-group">
  15. <label for="" class="control-label">First Name</label>
  16. <input class="form-control" name="first_name" autofocus value="{{old('first_name')}}">
  17. @error('first_name')
  18. <span class="text-sm text-muted">{{$message}}</span>
  19. @enderror
  20. </div>
  21. <div class="form-group">
  22. <label for="" class="control-label">Last Name</label>
  23. <input class="form-control" name="last_name" autofocus value="{{old('last_name')}}">
  24. @error('last_name')
  25. <span class="text-sm text-muted">{{$message}}</span>
  26. @enderror
  27. </div>
  28. <div class="form-group">
  29. <label for="" class="control-label">Email Address</label>
  30. <input class="form-control" name="email_address" autofocus value="{{old('email_address')}}">
  31. @error('email_address')
  32. <span class="text-sm text-muted">{{$message}}</span>
  33. @enderror
  34. </div>
  35. <div class="form-group">
  36. <label for="" class="control-label">Password</label>
  37. <input class="form-control pass" type="password" name="password" autofocus value="{{old('password')}}">
  38. @error('password')
  39. <span class="text-sm text-muted">{{$message}}</span>
  40. @enderror
  41. </div>
  42. <div class="row">
  43. <div class="col-12 text-center">
  44. <input type="submit" name="Submit" value="Create Account" class="btn btn-orange w-100 py-2">
  45. </div>
  46. </div>
  47. </form>
  48. <p><small class="text-center d-block text-muted my-3">If you have any questions at all, please contact your Dedicated HR Representative at the phone number or email displayed inside this portal.</small></p>
  49. </div>
  50. @endsection