Browse Source

Route change

Mostafijur Rahman 1 year ago
parent
commit
41b6639399
32 changed files with 87 additions and 3160 deletions
  1. 3 3
      app/Http/Controllers/Auth/LoginController.php
  2. 4 4
      app/Http/Controllers/Auth/RegisterController.php
  3. 4 4
      app/Http/Controllers/AuthSupervisor/LoginController.php
  4. 2 2
      app/Http/Controllers/AuthSupervisor/RegisterController.php
  5. 4 0
      app/Http/Controllers/HomeController.php
  6. 1 1
      app/Http/Controllers/StudentHomeController.php
  7. 1 1
      app/Mail/ApplicantPasswordResetLink.php
  8. 1 1
      app/Mail/SupervisorPasswordResetLink.php
  9. 1 1
      resources/views/Q_apply_form.blade.php
  10. 3 3
      resources/views/auth/invited_register_form.blade.php
  11. 1 1
      resources/views/auth/login.blade.php
  12. 2 2
      resources/views/auth/q_apply_register_form.blade.php
  13. 1 1
      resources/views/auth/register.blade.php
  14. 1 1
      resources/views/auth_supervisor/register-v2.blade.php
  15. 6 6
      resources/views/email/applicant_password_reset_link.blade.php
  16. 1 1
      resources/views/email/approve_teacher_email.blade.php
  17. 2 2
      resources/views/email/invitation_to_supervisor_email.blade.php
  18. 3 3
      resources/views/email/invitation_to_supervisor_email_with_checked.blade.php
  19. 1 1
      resources/views/email/q_apply_wishlist_registration_email.blade.php
  20. 1 1
      resources/views/email/q_form_email.blade.php
  21. 1 1
      resources/views/email/refer_a_friend_email.blade.php
  22. 1 1
      resources/views/email/student_signup_email.blade.php
  23. 1 1
      resources/views/email/student_signup_verify_email.blade.php
  24. 7 8
      resources/views/email/supervisor_password_reset_link.blade.php
  25. 1 1
      resources/views/email/wishlist_email.blade.php
  26. 0 1508
      resources/views/home.blade - Copy (2).php
  27. 0 814
      resources/views/landing.blade - Copy (2).php
  28. 0 516
      resources/views/landing.blade - Copy.php
  29. 0 242
      resources/views/profile.blade - Copy.php
  30. 1 1
      resources/views/supervisor/landing.blade.php
  31. 5 5
      resources/views/supervisor/layouts/header.blade.php
  32. 27 23
      routes/web.php

+ 3 - 3
app/Http/Controllers/Auth/LoginController.php

@@ -61,10 +61,10 @@ class LoginController extends Controller
         )->first();
 
         if(!$student){
-            return redirect('/login')->with('error','Unknown Email address!');
+            return redirect('/applicant/login')->with('error','Unknown Email address!');
         }else{
             if($student->email_verification == 0){
-                return redirect('/login')->with('error', 'Your e-mail is not verified!. Please check your email.');
+                return redirect('/applicant/login')->with('error', 'Your e-mail is not verified!. Please check your email.');
             }else{
                 $credentials = [
                     'email' => $request->email,
@@ -83,7 +83,7 @@ class LoginController extends Controller
                     return redirect('home');
                   }
                   else{
-                    return redirect('/login')->with('error','Wrong Email/Password combination');
+                    return redirect('/applicant/login')->with('error','Wrong Email/Password combination');
                 }
             }
         }

+ 4 - 4
app/Http/Controllers/Auth/RegisterController.php

@@ -100,7 +100,7 @@ class RegisterController extends Controller
                 ]);
 
             }else{
-                return redirect()->to("/login")->with('success','You are already registered. Please login here.');
+                return redirect()->to("/applicant/login")->with('success','You are already registered. Please login here.');
             }
             
 
@@ -122,7 +122,7 @@ class RegisterController extends Controller
                 $message->to($user_mail)->subject('Email Verification Required: Complete your Registration');
             });
 
-          return redirect()->to("/login")->with('success','Your registration successfully saved. Please check your email for verification');
+          return redirect()->to("/applicant/login")->with('success','Your registration successfully saved. Please check your email for verification');
         //}
 
 
@@ -140,13 +140,13 @@ class RegisterController extends Controller
      {
         $data = User::where('remember_token',$token)->first();
         if($data->email_verification ==1){
-            return Redirect('/login');  
+            return Redirect('/applicant/login');  
         } 
         $data->email_verification=1;
         $data->email_verified_at=now();
         $data->status=1;
         $data->update(); 
-        return Redirect('/login')->with('success','Your e-mail has been verified successfully. Please login to your account');
+        return Redirect('/applicant/login')->with('success','Your e-mail has been verified successfully. Please login to your account');
         
      }
 }

+ 4 - 4
app/Http/Controllers/AuthSupervisor/LoginController.php

@@ -61,10 +61,10 @@ class LoginController extends Controller
         )->first(); 
 
         if(!$teacher){
-            return redirect('/login-v2')->with('error','Unknown Email address!');
+            return redirect('/supervisor/login')->with('error','Unknown Email address!');
         }else{
             if($teacher->apply_status == 0){
-                return redirect('/login-v2')->with('error', 'Your account is still under review.');
+                return redirect('/supervisor/login')->with('error', 'Your account is still under review.');
             }
             else{
                 $credentials = [
@@ -83,7 +83,7 @@ class LoginController extends Controller
                     return redirect('supervisor/dashboard');
                   }
                   else{
-                    return redirect('/login-v2')->with('error','Wrong Email/Password combination');
+                    return redirect('/supervisor/login')->with('error','Wrong Email/Password combination');
                 }
             }
         }
@@ -92,7 +92,7 @@ class LoginController extends Controller
     public function logout(){
         $this->guard('teacher')->logout();
         request()->session()->invalidate();
-        return redirect('/login-v2');
+        return redirect('/supervisor/login');
 
     }
 

+ 2 - 2
app/Http/Controllers/AuthSupervisor/RegisterController.php

@@ -92,7 +92,7 @@ class RegisterController extends Controller
             ]);
 
         }else{
-            return redirect()->to("/login-v2")->with('success','You are already registered. Please login here.');
+            return redirect()->to("/supervisor/login")->with('success','You are already registered. Please login here.');
         }
         
         $data['name'] = $user_data->first_name .' '.$user_data->last_name;
@@ -105,7 +105,7 @@ class RegisterController extends Controller
             $message->to($user_mail)->subject('We’re excited to have you as a member of our community');
         });
 
-        return redirect()->to("/login-v2")->with('success','Your registration successfully saved.');
+        return redirect()->to("/supervisor/login")->with('success','Your registration successfully saved.');
 
     }
 

+ 4 - 0
app/Http/Controllers/HomeController.php

@@ -49,5 +49,9 @@ class HomeController extends Controller
         return view('auth.invited_register_form',compact('hash_ids','user','departments','universities'));
     }
 
+    public function landing(){
+        return view('supervisor.landing');
+    }
+
 
 }

+ 1 - 1
app/Http/Controllers/StudentHomeController.php

@@ -302,7 +302,7 @@ class StudentHomeController extends Controller
      public function logout(){
         \Auth::guard()->logout();
         request()->session()->invalidate();
-        return redirect('/login');
+        return redirect('/applicant/login');
 
     }
 

+ 1 - 1
app/Mail/ApplicantPasswordResetLink.php

@@ -39,6 +39,6 @@ class ApplicantPasswordResetLink extends Mailable
             "asraful@revinr.com"
         )->view(
             'email.applicant_password_reset_link'
-        )->subject('Applicant Password Reset Link');
+        )->subject('Password Reset Request: Set a New Password');
     }
 }

+ 1 - 1
app/Mail/SupervisorPasswordResetLink.php

@@ -39,6 +39,6 @@ class SupervisorPasswordResetLink extends Mailable
             "asraful@revinr.com"
         )->view(
             'email.supervisor_password_reset_link'
-        )->subject('Supervisor Password Reset Link');
+        )->subject('Password Reset Request: Set a New Password');
     }
 }

+ 1 - 1
resources/views/Q_apply_form.blade.php

@@ -405,7 +405,7 @@
                         $('#name').val('');
                         $('#email').val('');
                         if(res.action == 'old_user'){
-                            window.location.href = "{{ url('/login') }}";
+                            window.location.href = "{{ url('/applicant/login') }}";
                         }
                         pop_up_msg(res.msg);
 

+ 3 - 3
resources/views/auth/invited_register_form.blade.php

@@ -216,7 +216,7 @@
                                                         </button>
                                                     </div>
                                                 </div>
-                                                <p class="text-center mt-2 pb-4"><span> Already registered ?</span><a href="{{ url('login-v2') }}" class="ps-2"><span>Login Here</span></a></p>
+                                                <p class="text-center mt-2 pb-4"><span> Already registered ?</span><a href="{{ url('/supervisor/login') }}" class="ps-2"><span>Login Here</span></a></p>
                                             </div>
                                         </div>
                                     </div>
@@ -318,9 +318,9 @@
                         $('#password_confirmation').val('');
                         
                       if(res.action=='redirect'){
-                          window.location.href = "{{ url('/login-v2') }}";
+                          window.location.href = "{{ url('/supervisor/login') }}";
                         }else{
-                            window.location.href = "{{ url('/login-v2') }}";
+                            window.location.href = "{{ url('/supervisor/login') }}";
                         }
                       pop_up_msg(res.msg);
 

+ 1 - 1
resources/views/auth/login.blade.php

@@ -268,7 +268,7 @@
                                                     <div class="row">
                                                         <div class="col-md-12" style="text-align: right;">
                                                             <a href="{{ url('/applicant/password/reset') }}" style="margin-top:10px; display: block;">Reset Password</a>
-                                                            <p class="text-center mt-5" style="font-weight: 600;"><span>New on our platform ? </span><a href="{{ url('register') }}" class="ps-2"><span>Create an account</span></a></p>
+                                                            <p class="text-center mt-5" style="font-weight: 600;"><span>New on our platform ? </span><a href="{{ url('applicant/register') }}" class="ps-2"><span>Create an account</span></a></p>
                                                         </div>
                                                     </div>
                                                     

+ 2 - 2
resources/views/auth/q_apply_register_form.blade.php

@@ -216,7 +216,7 @@
                                                         </button>
                                                     </div>
                                                 </div>
-                                                <p class="text-center mt-2 pb-4"><span> Already registered ?</span><a href="{{ url('login') }}" class="ps-2"><span>Login Here</span></a></p>
+                                                <p class="text-center mt-2 pb-4"><span> Already registered ?</span><a href="{{ url('/applicant/login') }}" class="ps-2"><span>Login Here</span></a></p>
                                             </div>
                                         </div>
                                     </div>
@@ -316,7 +316,7 @@
                     $('#password_confirmation').val('');
 
                     if(res.action=='redirect'){
-                        window.location.href = "{{ url('/login') }}";
+                        window.location.href = "{{ url('/applicant/login') }}";
                     }
                     pop_up_msg(res.msg);
                       //window.location.href = "{{ url('/login') }}";

+ 1 - 1
resources/views/auth/register.blade.php

@@ -249,7 +249,7 @@
                                                             </button>
                                                         </div>
                                                     </div>
-                                                    <p class="text-center mt-2 pb-4" style="font-weight: 600;"><span> Already registered ?</span><a href="{{ url('login') }}" class="ps-2"><span>Login Here</span></a></p>                       
+                                                    <p class="text-center mt-2 pb-4" style="font-weight: 600;"><span> Already registered ?</span><a href="{{ url('/applicant/login') }}" class="ps-2"><span>Login Here</span></a></p>                       
                                                 </form>
                                                 </div>
                                             </div>

+ 1 - 1
resources/views/auth_supervisor/register-v2.blade.php

@@ -254,7 +254,7 @@
                                                         </button>
                                                     </div>
                                                 </div>
-                                                <p class="text-center pb-4" style="margin: 0px !important;"><span> Already registered ?</span><a href="{{ url('login-v2') }}" class="ps-2"><span>Login Here</span></a></p>
+                                                <p class="text-center pb-4" style="margin: 0px !important;"><span> Already registered ?</span><a href="{{ url('/supervisor/login') }}" class="ps-2"><span>Login Here</span></a></p>
                                             </form>
                                             </div>
                                          </div>

+ 6 - 6
resources/views/email/applicant_password_reset_link.blade.php

@@ -92,11 +92,11 @@
                         <div class="col-md-9 ms-3">
                             <div class="card rounded border-0 shadow" style="background-color:white;">
                                 <div class="p-5">
-                                    <h3 style="text-align: center; font-family:Ubuntu !important; color: #3c4858 !important; font-size: 30px !important;">Research Admission</h3>
-                                    <p class="mt-5">Dear {{$applicant->first_name}} {{$applicant->last_name}},</p>
-                                    <p class="mt-3">Thank you for choosing Doctoral Proposal for your business. <br><br> You are receiving this email because you have requested a password reset request. Click the below button to set a new password.</p>
+                                    <h3 style="text-align: center; font-family:Ubuntu !important; color: #3c4858 !important; font-size: 30px !important;">Set a New Password</h3>
+                                    <p class="mt-5"><strong>Hi {{$applicant->first_name}} {{$applicant->last_name}},</strong></p>
+                                    <p class="mt-3">You are receiving this email because you have requested a password reset request. Click the below button to set a new password.</p>
                                     
-                                    <div class="col-md-12">
+                                    <div class="col-md-12" style="text-align: center;">
                                         <div class="mb-2 text-center">
                                             <a href="{{ url('applicant/password/reset', $info['token']) }}" style="display:inline-block;background:#2e1153;color:white;font-family:Lato, Helvetica, Arial, sans-serif;font-size:14px;font-weight:600;line-height:120%;letter-spacing:.4px;margin:0;text-decoration:none;text-transform:none;padding:10px 25px;mso-padding-alt:0px;border-radius:30px;" target="_blank">
                                                 SET NEW PASSWORD
@@ -104,8 +104,8 @@
                                         </div>
                                     </div>
                                     
-                                    <p class="mt-3" style="margin: 0px;">Best regards,</p>
-                                    <h6 class="mb-3">Research Admission Team</h6>
+                                    <p class="mt-2">If you did not request a password reset, no further action is required.</p>
+                                    <div style="font-family:Lato,Helvetica,Arial,sans-serif;font-size:16px;line-height:25px;text-align:left;color:rgb(102, 102, 102);letter-spacing: .2px;"> If you did not request a password reset, no further action is required. <br><br> If clicking on the link does not work please open the following address into your browser: <a href="{{ url('applicant/password/reset', $info['token']) }}" class="anchors" target="_blank" style="color: #adadad; text-decoration: none;">{{ url('applicant/password/reset', $info['token']) }}</a> </div> 
                                 </div> 
                                 <div style="background-color: #eee; border-radius: 0px 0px 5px 5px;"> 
                                     <p class="mt-3 tmail">Research Admission is a revolutionary platform that simplifies the application process for<br> both applicants and supervisors, thereby saving valuable time.</p>

+ 1 - 1
resources/views/email/approve_teacher_email.blade.php

@@ -98,7 +98,7 @@
                                     <p class="mt-2">To ensure that your account is configured properly, we have reviewed the necessary information and have completed the activation process. You now have full access to all the features that we have built to support you.</p>
                                     <div class="col-md-12">
                                         <div class="mb-2 text-center">
-                                            <a href="{{ url('login-v2') }}">
+                                            <a href="{{ url('/supervisor/login') }}">
                                                 <button type="submit" class="btn btn1" style="padding: 3px 18px;">
                                                     {{ __('Login to your account') }}
                                                 </button>

+ 2 - 2
resources/views/email/invitation_to_supervisor_email.blade.php

@@ -100,9 +100,9 @@
                                         $already_registared =\App\User::where('email',$email)->where('sign_up',1)->first();
                                     @endphp
                                     @if($already_registared)
-                                        <a href="{{ url('login-v2') }}" style="font-weight: bolder !important;"> click here</a>
+                                        <a href="{{ url('/supervisor/login') }}" style="font-weight: bolder !important;"> click here</a>
                                     @else
-                                        <a href="{{ url('register-v2/'.$hashids->encode($teacher_id)) }}" style="font-weight: bolder !important;"> click here</a>
+                                        <a href="{{ url('/supervisor/register/'.$hashids->encode($teacher_id)) }}" style="font-weight: bolder !important;"> click here</a>
                                     @endif
                                     <p class="mt-2"> If you're eager to discover more about our platform, feel free to visit the following link for additional information: <a href="{{ url('/landing') }}">www.researchadmision.com/supervisor/welcome</a> </p>
                                     <p class="mt-2"> Thank you for your time, and we hope you find this tool as helpful as we have.</p>

+ 3 - 3
resources/views/email/invitation_to_supervisor_email_with_checked.blade.php

@@ -102,11 +102,11 @@
                                         $already_registared =\App\User::where('email',$email)->where('sign_up',1)->first();
                                     @endphp
                                     @if($already_registared)
-                                        <a href="{{ url('login-v2') }}" style="font-weight: bolder !important;"> click here</a>
+                                        <a href="{{ url('/supervisor/login') }}" style="font-weight: bolder !important;"> click here</a>
                                     @else
-                                        <a href="{{ url('register-v2/'.$hashids->encode($teacher_id)) }}" style="font-weight: bolder !important;"> click here</a>
+                                        <a href="{{ url('/supervisor/register/'.$hashids->encode($teacher_id)) }}" style="font-weight: bolder !important;"> click here</a>
                                     @endif
-                                    <p class="mt-2"> If you're eager to discover more about our platform, feel free to visit the following link for additional information: <a href="{{ url('/landing') }}">www.researchadmision.com/supervisor/welcome</a> </p>
+                                    <p class="mt-2"> If you're eager to discover more about our platform, feel free to visit the following link for additional information: <a href="{{ url('/supervisor/welcome') }}">www.researchadmision.com/supervisor/welcome</a> </p>
                                     <p class="mt-2"> Thank you for your time, and we hope you find this tool as helpful as we have.</p>
                                     <p class="mt-2" style="margin: 0px;">Best regards,</p>
                                     <h6 class="mb-3">Research Admission Team</h6>

+ 1 - 1
resources/views/email/q_apply_wishlist_registration_email.blade.php

@@ -85,7 +85,7 @@
                                     <p class="mt-3">I hope this email finds you well. </p>
                                     <p class="mt-2">Thank you for choosing Research Admission platform. We're confident our platform will exceed your expectations.</p> 
                                     <p>To verify, Please click the below link </p>
-                                    <a href="{{url('verify')}}/{{$token}}">click here</a>
+                                    <a href="{{url('/applicant/verify')}}/{{$token}}">click here</a>
                                     <p class="mt-2">We're excited to have you on board!</p>
                                     <p class="mt-2" style="margin: 0px;">Best regards,</p>
                                     <p>Research Admission</p>

+ 1 - 1
resources/views/email/q_form_email.blade.php

@@ -87,7 +87,7 @@
                                     @endphp
                                     <p class="mt-3">I hope this email finds you well. </p>
                                     <p class="mt-2">I appreciate your initiative to contact me regarding your research admission interest. To proceed further, I would request you to please submit your research proposal using the following link</p>
-                                    <a href="{{ url('register/'.$hashids->encode($student_id)) }}">click here</a>
+                                    <a href="{{ url('/applicant/register/'.$hashids->encode($student_id)) }}">click here</a>
                                     <p class="mt-2">The portal will guide you through the submission process and provide you with all the necessary information required for your submission. It will provide you with real-time updates on the status of your proposal as well.</p>
                                     <p class="mt-2">In case you face any issues during the submission process, please use my Account Reference Number ({{$arn}}) and submit your proposal. This will ensure that your proposal reaches to me without any delay or technical difficulty.</p>
                                     <p class="mt-2">I am looking forward to reviewing your research proposal and I hope to hear from you soon. If you have any further questions, please do not hesitate to contact me.</p>

+ 1 - 1
resources/views/email/refer_a_friend_email.blade.php

@@ -87,7 +87,7 @@
                                     <p class="mt-5">Dear {{$name}},</p>
                                     <p class="mt-3">I have found the Research Admission Platform incredibly helpful in my own search for a research supervisor. The platform is a free and easy-to-use tool that can help you connect with potential supervisors.</p>
                                     <p>To register, Please click the below link </p>
-                                    <a href="{{ url('register/'.$hashids->encode($student_id)) }}">click here</a>
+                                    <a href="{{ url('/applicant/register/'.$hashids->encode($student_id)) }}">click here</a>
                                     <p class="mt-2"> It allows you to submit your research proposal to multiple supervisors with just a few clicks. You can then track the real-time status of your application and receive a decision quickly. I found this feature particularly useful, as it allowed me to keep track of the progress of my applications without having to constantly follow up with supervisors.</p>
                                     <p class="mt-2"> I think you would find it to be a valuable resource in your own search for a research supervisor. It's free to use and can save you a lot of time and effort in finding the right match for your research interests. If you have any questions about the platform or would like some help getting started, please don't hesitate to reach out to me.</p>
 

+ 1 - 1
resources/views/email/student_signup_email.blade.php

@@ -84,7 +84,7 @@
                                     <p class="mt-5">Dear {{$name}},</p>
                                     <p class="mt-3">Thank you for registering with our platform. You need to verify your email address in order to continue with your application.</p>
                                     <p class="mt-2"> To complete the verification process, please click on the following link or copy it into your web browser: </p>
-                                    <a href="{{url('/login')}}" style="color: black">click here</a>
+                                    <a href="{{url('/applicant/login')}}" style="color: black">click here</a>
                                     <p class="mt-2"> If you did not register with our platform, please ignore this message.</p>
                                     <p class="mt-2" style="margin: 0px;">Best regards,</p>
                                     <p>Research Admission</p>

+ 1 - 1
resources/views/email/student_signup_verify_email.blade.php

@@ -84,7 +84,7 @@
                                     <p class="mt-5">Dear {{$name}},</p>
                                     <p class="mt-3">Thank you for registering with our platform. You need to verify your email address in order to continue with your application.</p>
                                     <p class="mt-2"> To complete the verification process, please click on the following link or copy it into your web browser: </p>
-                                    <a href="{{url('verify')}}/{{$token}}" style="color: black">click here</a>
+                                    <a href="{{url('/applicant/verify')}}/{{$token}}" style="color: black">click here</a>
                                     <p class="mt-2"> If you did not register with our platform, please ignore this message.</p>
                                     <p class="mt-2" style="margin: 0px;">Best regards,</p>
                                     <p>Research Admission</p>

+ 7 - 8
resources/views/email/supervisor_password_reset_link.blade.php

@@ -92,20 +92,19 @@
                         <div class="col-md-9 ms-3">
                             <div class="card rounded border-0 shadow" style="background-color:white;">
                                 <div class="p-5">
-                                    <h3 style="text-align: center; font-family:Ubuntu !important; color: #3c4858 !important; font-size: 30px !important;">Research Admission</h3>
-                                    <p class="mt-5">Dear {{$supervisor->first_name}} {{$supervisor->last_name}},</p>
-                                    <p class="mt-3">Thank you for choosing Doctoral Proposal for your business. <br><br> You are receiving this email because you have requested a password reset request. Click the below button to set a new password.</p>
-                                    
-                                    <div class="col-md-12">
+                                    <h3 style="text-align: center; font-family:Ubuntu !important; color: #3c4858 !important; font-size: 30px !important;">Set a New Password</h3>
+                                    <p class="mt-5"><strong>Hi {{$supervisor->first_name}} {{$supervisor->last_name}},</strong></p>
+                                    <p class="mt-3">You are receiving this email because you have requested a password reset request. Click the below button to set a new password.</p>
+                                    <div class="col-md-12" style="text-align: center;">
                                         <div class="mb-2 text-center">
                                             <a href="{{ url('supervisor/password/reset', $info['token']) }}" style="display:inline-block;background:#2e1153;color:white;font-family:Lato, Helvetica, Arial, sans-serif;font-size:14px;font-weight:600;line-height:120%;letter-spacing:.4px;margin:0;text-decoration:none;text-transform:none;padding:10px 25px;mso-padding-alt:0px;border-radius:30px;" target="_blank">
                                                 SET NEW PASSWORD
-                                              </a>  
+                                            </a>  
                                         </div>
                                     </div>
+                                    <p class="mt-2">If you did not request a password reset, no further action is required.</p>
+                                    <div style="font-family:Lato,Helvetica,Arial,sans-serif;font-size:16px;line-height:25px;text-align:left;color:rgb(102, 102, 102);letter-spacing: .2px;"> If you did not request a password reset, no further action is required. <br><br> If clicking on the link does not work please open the following address into your browser: <a href="{{ url('supervisor/password/reset', $info['token']) }}" class="anchors" target="_blank" style="color: #adadad; text-decoration: none;">{{ url('supervisor/password/reset', $info['token']) }}</a> </div> 
                                     
-                                    <p class="mt-3" style="margin: 0px;">Best regards,</p>
-                                    <h6 class="mb-3">Research Admission Team</h6>
                                 </div> 
                                 <div style="background-color: #eee; border-radius: 0px 0px 5px 5px;"> 
                                     <p class="mt-3 tmail">Research Admission is a revolutionary platform that simplifies the application process for<br> both applicants and supervisors, thereby saving valuable time.</p>

+ 1 - 1
resources/views/email/wishlist_email.blade.php

@@ -87,7 +87,7 @@
                                     @endphp
                                     <p class="mt-3">I hope this email finds you well. </p>
                                     <p class="mt-2">I appreciate your initiative to contact me regarding your research admission interest. To proceed further, I would request you to please submit your research proposal using the following link</p>
-                                    <a href="{{ url('register/'.$hashids->encode($student_id)) }}">click here</a>
+                                    <a href="{{ url('/applicant/register/'.$hashids->encode($student_id)) }}">click here</a>
                                     <p class="mt-2">The portal will guide you through the submission process and provide you with all the necessary information required for your submission. It will provide you with real-time updates on the status of your proposal as well.</p>
                                     <p class="mt-2">In case you face any issues during the submission process, please use my Account Reference Number ({{$arn}}) and submit your proposal. This will ensure that your proposal reaches to me without any delay or technical difficulty.</p>
                                     <p class="mt-2">I am looking forward to reviewing your research proposal and I hope to hear from you soon. If you have any further questions, please do not hesitate to contact me.</p>

+ 0 - 1508
resources/views/home.blade - Copy (2).php

@@ -1,1508 +0,0 @@
-@extends('web.layouts.master')
-@section('content')     
-        <!-- Hero Start -->
-       <section class="bg-half-170 d-table w-100 it-home mt-5" style="background-color: #efefef; height:600px;">
-            <div class="container">
-               <div class="row">
-                     <!-- <div class="col-md-3 mt-1" style="padding: 20px;"> 
-                                <div class="card p-3 rounded border-0" style="background-color: white;">
-                                    <div class="info-palate mt-0" style="padding-bottom: 10px;">
-                                        <div class="left">
-                                            <div class="stage_form_header">
-                                                <div class="left">
-                                                    <i class="fa fa-user icn" style="padding: 5.5px 7.5px;"></i>
-                                                </div>
-                                                <div class="right" style="align-self: center;">
-                                                    <span class="main_title">Demo Account</span>
-                                                    <span class="sub_title">Demo</span>
-                                                </div>
-                                                <div>
-                                                 <a href="">
-                                                     <i class="fa fa-pencil change_pass_btn" style="font-size: 13px !important; padding: 4px;"></i>
-                                                </a>
-                                            </div>
-                                        </div>
-                                            
-                                            <div class="load_primary_information">
-                                                <dd class="tbl">Given Name</dd>
-                                                <dt class="tbl2 mb-2">{{$user_info->first_name}}</dt>
-                                                <dd class="tbl">Family Name</dd>
-                                                <dt class="tbl2 mb-2">{{$user_info->last_name}}</dt>
-                                                <dd class="tbl">Date Of Birth</dd>
-                                                <dt class="tbl2">{{date("d M, Y", strtotime($user_info->dob))}}</dt>
-                                                <dd class="tbl">Nationality</dd>
-                                                <dt class="tbl2">{{$user_info->country_name->name ?? 'Notspecified'}}</dt>                                            
-                                            </div>
-                                        </div>
-                                    </div>
-                             </div>
-                             <div class="full-box mt-4" style="padding:10px; background-color:white; border-radius:6px;">
-                                        <div class="card-body" style="padding:11px !important;">
-                                               <span class="h6"> Contact Information</span>
-                                             <div class="info">
-                                                  <dl style="position: relative;">
-                                                       <dt style="font-size: 11px; font-weight: 200;"> 
-                                                          <i class="fa fa-phone"></i>
-                                                          <span>+441142725444</span>
-                                                       </dt>
-                                                       <dt class="mt-1" style="font-size: 11px; font-weight: 200;"> 
-                                                          <i class="fa fa-envelope-o"></i>
-                                                          <span>hadiur.iecc@gmail.com2</span>
-                                                       </dt>
-                                                  </dl>
-                                             </div>
-                                         </div>
-                                    </div> 
-                        </div> -->
-                        <!--end col-->
-
-                    <div class="col-md-12 mt-4 mb-3">
-                        @if(Auth::user()->save_as_complete==0)
-                        <div class="card border-0" style="border-radius:0px !important;">
-                            <div class="container-fluid">
-                                <div class="row">
-                                    <div class="col-md-12">
-                                        <div class="row align-items-center">
-                                            <div class="col-md-12" style="background: rgb(255, 255, 255);border-radius: 0.25rem;">
-                                                <div class="education">
-                                                    <i class="fa fa-graduation-cap" style="padding: 7px;"></i>Education History
-                                                </div>
-                                                <div class="mt-3 mb-2">
-                                                    <div class="container-fluid" style="padding:0px !important;">
-                                                        <div class="row">
-                                                            <div class="col-md-12">
-                                                                <div class="text-end" style="margin:0px !important;">
-                                                                    <a role="button" data-bs-toggle="collapse" data-bs-parent="#collapse" href="#collapse1" aria-expanded="true" aria-controls="collapse1">
-                                                                        <button type="button" class="btn btn2" data-toggle="collapse" data-target="#demo">Add</button>
-                                                                    </a>
-                                                                </div>
-                                                            </div> <!--box-end-->
-                                                            <div class="col-md-12 mt-1">
-                                                                <div id="demo" class="collapse">
-                                                                    <div class="panel-body" style="padding:10px; background-color:#dedbf1;  border: 1px solid #e9e5e5; border-radius: 5px;">
-                                                                        <form method="POST" action="{{ route('institution-save') }}">
-                                                                        @csrf
-                                                                           <div class="row">
-                                                                                <div class="col-md-3">
-                                                                                    <div class="mb-1">
-                                                                                            <label class="form-label">Academic level <span class="text-danger">*</span></label>
-                                                                                        <div class="form-icon position-relative">
-                                                                                            <select name="academiclevel" id="academic level" class="form-control frm" required="">
-                                                                                                   <option disabled="" selected="" value="">Choose one....</option>
-                                                                                                @foreach($academic_level as $row)
-                                                                                                    <option value="{{$row->id}}">{{$row->name}}</option>
-                                                                                                @endforeach                                                                                          
-                                                                                               
-                                                                                            </select>
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>
-                                                                                <div class="col-md-3">
-                                                                                    <div class="mb-1">
-                                                                                            <label class="form-label" for="subject">Subject <span class="text-danger">*</span></label>
-                                                                                        <div class="form-icon position-relative">
-                                                                                            <input type="text" for="subject" name="subject" class="form-control ps-2" required="">
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>
-                                                                                <div class="col-md-3">
-                                                                                        <div class="mb-1">
-                                                                                            <label class="form-label" for="">Institution<span class="text-danger">*</span></label>
-                                                                                        <div class="form-icon position-relative">
-                                                                                            <input type="text"  for="institution" name="institution" class="form-control ps-2" placeholder="" required="">
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>
-                                                                                <div class="col-md-3">
-                                                                                    <div class="mb-1">
-                                                                                            <label class="form-label">Passing Year <span class="text-danger">*</span></label>
-                                                                                        <div class="form-icon position-relative">
-                                                                                            <select name="passingyear" id="passing year" class="form-control frm" required="">
-                                                                                                <option disabled="" selected="" value="">Year</option>
-                                                                                                @php
-                                                                                                    $firstYear = (int)date('Y') - 20;
-                                                                                                    $lastYear = $firstYear + 20;
-                                                                                                    for($i=$firstYear;$i<=$lastYear;$i++){
-                                                                                                @endphp
-                                                                                                <option value="{{$i}}">{{$i}}</option>
-                                                                                                @php
-                                                                                                    }
-                                                                                                @endphp
-                                                                                            </select>
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>
-                                                                                <div class="col-md-3">
-                                                                                    <div class="mb-1">
-                                                                                            <label class="form-label">Result <span class="text-danger">*</span></label>
-                                                                                        <div class="form-icon position-relative">
-                                                                                            <input type="text" class="form-control ps-2" name="result" placeholder="" required="">
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>
-                                                                                <div class="col-md-3">
-                                                                                    <div class="row">
-                                                                                        <div class="col-md-6">
-                                                                                            <div class="mb-1">
-                                                                                                    <label class="form-label">Start Date <span class="text-danger">*</span></label>
-                                                                                                <div class="form-icon position-relative">
-                                                                                                    <select name="startdate" id="start date" class="form-control frm" required="">
-                                                                                                        <option disabled="" selected="" value="">Year</option>
-                                                                                                        @php
-                                                                                                            $firstYear = (int)date('Y') - 20;
-                                                                                                            $lastYear = $firstYear + 20;
-                                                                                                            for($i=$firstYear;$i<=$lastYear;$i++){
-                                                                                                        @endphp
-                                                                                                        <option value="{{$i}}">{{$i}}</option>
-                                                                                                        @php
-                                                                                                            }
-                                                                                                        @endphp
-
-                                                                                                    </select>
-                                                                                                </div>
-                                                                                            </div>
-                                                                                        </div>
-                                                                                        <div class="col-md-6">
-                                                                                            <div class="mb-1 mt-2">
-                                                                                                    <label class="form-label"></label>
-                                                                                                <div class="form-icon position-relative">
-                                                                                                    <select name="startmonth" id="month" class="form-control frm" required="">
-                                                                                                        <option disabled="" selected="" value="">Month</option>
-                                                                                                        <option value="01">January</option>
-                                                                                                        <option value="02">February</option>
-                                                                                                        <option value="03">March</option>
-                                                                                                        <option value="04">April</option>
-                                                                                                        <option value="05">May</option>
-                                                                                                        <option value="06">June</option>
-                                                                                                        <option value="07">July</option>
-                                                                                                        <option value="08">August</option>
-                                                                                                        <option value="09">September</option>
-                                                                                                        <option value="10">October</option>
-                                                                                                        <option value="11">November</option>
-                                                                                                        <option value="12">December</option>
-                                                                                                    </select>
-                                                                                                </div>
-                                                                                            </div>
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>
-                                                                                <div class="col-md-3">
-                                                                                    <div class="row">
-                                                                                         <div class="col-md-6">
-                                                                                            <div class="mb-1">
-                                                                                                    <label class="form-label">End Date <span class="text-danger">*</span></label>
-                                                                                                <div class="form-icon position-relative">
-                                                                                                    <select name="enddate" id="end date" class="form-control frm" required="">
-                                                                                                        <option disabled="" selected="" value="">Year</option>
-                                                                                                        @php
-                                                                                                            $firstYear = (int)date('Y') - 20;
-                                                                                                            $lastYear = $firstYear + 20;
-                                                                                                            for($i=$firstYear;$i<=$lastYear;$i++){
-                                                                                                        @endphp
-                                                                                                        <option value="{{$i}}">{{$i}}</option>
-                                                                                                        @php
-                                                                                                            }
-                                                                                                        @endphp
-
-                                                                                                    </select>
-                                                                                                </div>
-                                                                                            </div>
-                                                                                        </div>
-                                                                                        <div class="col-md-6">
-                                                                                            <div class="mb-1 mt-2">
-                                                                                                    <label class="form-label"></label>
-                                                                                                <div class="form-icon position-relative">
-                                                                                                    <select name="endmonth" id="month" class="form-control frm" required="">
-                                                                                                        <option disabled="" selected="" value="">Month</option>
-                                                                                                        <option value="01">January</option>
-                                                                                                        <option value="02">February</option>
-                                                                                                        <option value="03">March</option>
-                                                                                                        <option value="04">April</option>
-                                                                                                        <option value="05">May</option>
-                                                                                                        <option value="06">June</option>
-                                                                                                        <option value="07">July</option>
-                                                                                                        <option value="08">August</option>
-                                                                                                        <option value="09">September</option>
-                                                                                                        <option value="10">October</option>
-                                                                                                        <option value="11">November</option>
-                                                                                                        <option value="12">December</option>
-                                                                                                    </select>
-                                                                                                </div>
-                                                                                            </div>
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>
-                                                                                <div class="col-md-3">
-                                                                                    <div class="mt-4 pt-3">
-                                                                                        <div class="text-end">
-                                                                                            <button class="btn btncl"><i class="fa fa-refresh"></i></button> 
-                                                                                            <button class="btn btn2">Save</button>                                                                                                                
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>                                                                                                                                           
-                                                                         </div>
-                                                                        </form>
-                                                                    </div>
-                                                                </div>
-                                                            </div><!--end col-->                               
-                                                        </div>
-                                                    </div>
-                                                    <div class="table-responsive mt-2">
-                                                        @if(count($institution)>0)
-                                                        <table class="table table-bordered list_table" style="margin-bottom:10px;">
-                                                            <thead>
-                                                                <tr>
-                                                                    <th>Institution</th>
-                                                                    <th>Subject</th>
-                                                                    <th>Result</th>
-                                                                    <th>During</th>
-                                                                    <th>Action</th>
-                                                                </tr>
-                                                            </thead>
-                                                            <tbody>
-                                                                @foreach($institution as $row)  
-                                                                    <tr>
-                                                                        <td style="font-size: 11px;">{{$row->institution}}</td>
-                                                                        <td style="font-size: 11px;">{{$row->subject}}
-                                                                            <div class="right">
-                                                                                <span class="label_badge_radius" style="background-image: linear-gradient(90deg,rgba(46,17,83,.19),#f5f4fd) !important;">{{$row->academic_level_info->name}}</span>
-                                                                            </div>
-                                                                       </td> 
-                                                                        <td style="font-size: 11px;">{{$row->result}}
-                                                                            <div class="right">
-                                                                                <span style="font-weight: 400; font-size: 12px;">PYear: {{$row->passing_year}}</span>
-                                                                            </div>
-                                                                        </td>
-                                                                        <td style="font-size: 11px;">{{date("d M, Y", strtotime($row->start_date)).'-'.date("d M, Y", strtotime($row->end_date))}}</td>
-                                                                          <td class="text-center" style="width: 75px;">
-                                                                                <div class="icon_bar" style="border: none;">                                                                                              
-                                                                                    <a role="" data-bs-toggle="collapse" data-bs-parent="#collapse" href="#collapse1" aria-expanded="true" aria-controls="collapse1">
-                                                                                        <i class="fa fa-edit" data-toggle="collapse" data-target="#demo11" onclick="editInstitute({{$row}})"></i>
-                                                                                    </a>
-                                                                                    
-                                                                                        <i class="fa fa-trash delete_education" data-id="{{ $row->id }}"></i>
-                                                                                                                                                                       
-                                                                                </div>
-                                                                         </td>   
-                                                                    </tr>
-                                                                @endforeach
-                                                            </tbody>
-                                                        </table>
-                                                        @else
-                                                        <div class="alert  mt-1 mb-3" style="border-color: #e9f0f3; font-size: 12px !important; color: #dc3545; border-radius: 30px; padding: 8px 15px;">
-                                                            <span>No Education History available.</span>
-                                                        </div> 
-                                                        @endif
-                                                    </div>
-                                                          <div class="col-md-12">
-                                                                <div id="demo11" class="collapse">
-                                                                    <div class="panel-body mb-2" style="padding:10px; background-color:#dedbf1;  border: 1px solid #e9e5e5; border-radius: 5px;">
-                                                                        <form method="POST" action="" id="edit-institute">
-                                                                        @csrf
-                                                                           <div class="row">
-                                                                                <div class="col-md-3">
-                                                                                    <div class="mb-1">
-                                                                                            <label class="form-label">Academic level <span class="text-danger">*</span></label>
-                                                                                        <div class="form-icon position-relative">
-                                                                                            <select name="academiclevel" id="academic level" class="form-control frm" required="">
-                                                                                                   <option disabled="" selected="" value="">Choose one....</option>
-                                                                                                @foreach($academic_level as $row)
-                                                                                                    <option value="{{$row->id}}">{{$row->name}}</option>
-                                                                                                @endforeach                                                                                          
-                                                                                               
-                                                                                            </select>
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>
-                                                                                <div class="col-md-3">
-                                                                                    <div class="mb-1">
-                                                                                            <label class="form-label" for="subject">Subject <span class="text-danger">*</span></label>
-                                                                                        <div class="form-icon position-relative">
-                                                                                            <input type="text" for="subject" name="subject" class="form-control ps-2" required="">
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>
-                                                                                <div class="col-md-3">
-                                                                                        <div class="mb-1">
-                                                                                            <label class="form-label" for="">Institution<span class="text-danger">*</span></label>
-                                                                                        <div class="form-icon position-relative">
-                                                                                            <input type="text"  for="institution" name="institution" class="form-control ps-2" placeholder="" required="">
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>
-                                                                                <div class="col-md-3">
-                                                                                    <div class="mb-1">
-                                                                                            <label class="form-label">Passing Year <span class="text-danger">*</span></label>
-                                                                                        <div class="form-icon position-relative">
-                                                                                            <select name="passingyear" id="passing year" class="form-control frm" required="">
-                                                                                                <option disabled="" selected="" value="">Year</option>
-                                                                                                @php
-                                                                                                    $firstYear = (int)date('Y') - 20;
-                                                                                                    $lastYear = $firstYear + 20;
-                                                                                                    for($i=$firstYear;$i<=$lastYear;$i++){
-                                                                                                @endphp
-                                                                                                <option value="{{$i}}">{{$i}}</option>
-                                                                                                @php
-                                                                                                    }
-                                                                                                @endphp
-                                                                                            </select>
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>
-                                                                                <div class="col-md-3">
-                                                                                    <div class="mb-1">
-                                                                                            <label class="form-label">Result <span class="text-danger">*</span></label>
-                                                                                        <div class="form-icon position-relative">
-                                                                                            <input type="text" class="form-control ps-2" name="result" placeholder="" required="">
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>
-                                                                                <div class="col-md-3">
-                                                                                    <div class="row">
-                                                                                        <div class="col-md-6">
-                                                                                            <div class="mb-1">
-                                                                                                    <label class="form-label">Start Date <span class="text-danger">*</span></label>
-                                                                                                <div class="form-icon position-relative">
-                                                                                                    <select name="startdate" id="start date" class="form-control frm" required="">
-                                                                                                        <option disabled="" selected="" value="">Year</option>
-                                                                                                        @php
-                                                                                                            $firstYear = (int)date('Y') - 20;
-                                                                                                            $lastYear = $firstYear + 20;
-                                                                                                            for($i=$firstYear;$i<=$lastYear;$i++){
-                                                                                                        @endphp
-                                                                                                        <option value="{{$i}}">{{$i}}</option>
-                                                                                                        @php
-                                                                                                            }
-                                                                                                        @endphp
-
-                                                                                                    </select>
-                                                                                                </div>
-                                                                                            </div>
-                                                                                        </div>
-                                                                                        <div class="col-md-6">
-                                                                                            <div class="mb-1 mt-2">
-                                                                                                    <label class="form-label"></label>
-                                                                                                <div class="form-icon position-relative">
-                                                                                                    <select name="startmonth" id="month" class="form-control frm" required="">
-                                                                                                        <option disabled="" selected="" value="">Month</option>
-                                                                                                        <option value="01">January</option>
-                                                                                                        <option value="02">February</option>
-                                                                                                        <option value="03">March</option>
-                                                                                                        <option value="04">April</option>
-                                                                                                        <option value="05">May</option>
-                                                                                                        <option value="06">June</option>
-                                                                                                        <option value="07">July</option>
-                                                                                                        <option value="08">August</option>
-                                                                                                        <option value="09">September</option>
-                                                                                                        <option value="10">October</option>
-                                                                                                        <option value="11">November</option>
-                                                                                                        <option value="12">December</option>
-                                                                                                    </select>
-                                                                                                </div>
-                                                                                            </div>
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>
-                                                                                <div class="col-md-3">
-                                                                                    <div class="row">
-                                                                                         <div class="col-md-6">
-                                                                                            <div class="mb-1">
-                                                                                                    <label class="form-label">End Date <span class="text-danger">*</span></label>
-                                                                                                <div class="form-icon position-relative">
-                                                                                                    <select name="enddate" id="end date" class="form-control frm" required="">
-                                                                                                        <option disabled="" selected="" value="">Year</option>
-                                                                                                        @php
-                                                                                                            $firstYear = (int)date('Y') - 20;
-                                                                                                            $lastYear = $firstYear + 20;
-                                                                                                            for($i=$firstYear;$i<=$lastYear;$i++){
-                                                                                                        @endphp
-                                                                                                        <option value="{{$i}}">{{$i}}</option>
-                                                                                                        @php
-                                                                                                            }
-                                                                                                        @endphp
-
-                                                                                                    </select>
-                                                                                                </div>
-                                                                                            </div>
-                                                                                        </div>
-                                                                                        <div class="col-md-6">
-                                                                                            <div class="mb-1 mt-2">
-                                                                                                    <label class="form-label"></label>
-                                                                                                <div class="form-icon position-relative">
-                                                                                                    <select name="endmonth" id="month" class="form-control frm" required="">
-                                                                                                        <option disabled="" selected="" value="">Month</option>
-                                                                                                        <option value="01">January</option>
-                                                                                                        <option value="02">February</option>
-                                                                                                        <option value="03">March</option>
-                                                                                                        <option value="04">April</option>
-                                                                                                        <option value="05">May</option>
-                                                                                                        <option value="06">June</option>
-                                                                                                        <option value="07">July</option>
-                                                                                                        <option value="08">August</option>
-                                                                                                        <option value="09">September</option>
-                                                                                                        <option value="10">October</option>
-                                                                                                        <option value="11">November</option>
-                                                                                                        <option value="12">December</option>
-                                                                                                    </select>
-                                                                                                </div>
-                                                                                            </div>
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>
-                                                                                <div class="col-md-3">
-                                                                                    <div class="mt-4 pt-3">
-                                                                                        <div class="text-end">
-                                                                                            <button class="btn btncl"><i class="fa fa-refresh"></i></button> 
-                                                                                            <button class="btn btn2">Update</button>                                                                                                                
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>                                                                                                                                           
-                                                                            </div>
-                                                                        </form>
-                                                                    </div>
-                                                                </div>
-                                                            </div><!--end col-->                                                               
-                                                        </div>
-                                                    </div>
-                                                </div><!--end row--> 
-                                       
-                                         <div class="row align-items-center mt-4">
-                                                <div class="col-md-12" style="background: rgb(255, 255, 255);border-radius: 0.25rem;">
-                                                    <div class="education">
-                                                        <i class="fa fa-briefcase" style="padding: 7px;"></i>Work Experience
-                                                    </div>
-                                                    <div class="row">
-                                                        <div class="col-md-6 mt-2">
-                                                            <div style="margin:0px !important; font-size:12px;font-weight: 600;">
-                                                                   Do you have any Work Experience?
-                                                                <div class="form-check-inline ps-3">
-                                                                    <label class="form-check-label" for="radio1">
-                                                                        <input type="radio" {{ Auth::user()->is_work_experience == 1 ? 'checked' : ''}} class="form-check-input" name="work_experience" value="Yes"  style="font-size: 12px;" onclick="checkWorkExperience('1')"> Yes
-                                                                    </label>
-                                                                </div>
-                                                                <div class="form-check-inline">
-                                                                    <label class="form-check-label" for="radio2">
-                                                                        <input type="radio" {{ Auth::user()->is_work_experience == 0 ? 'checked' : ''}} class="form-check-input" name="work_experience" value="No"  style="font-size: 12px;" onclick="checkWorkExperience('0')"> No
-                                                                    </label>
-                                                                </div>
-                                                            </div>
-                                                        </div>
-                                                                                    
-                                                        <div class="col-md-6 mt-2" id="add_div" style="display:none;">
-                                                            <div class="text-end" style="margin:0px !important;">
-                                                                <a role="button" data-bs-toggle="collapse" data-bs-parent="#collapse" href="#collapse1" aria-expanded="true" aria-controls="collapse1">
-                                                                    <button type="button" class="btn btn2" data-toggle="collapse" data-target="#demo1">Add</button>
-                                                                </a>
-                                                            </div>
-                                                        </div>
-                                                    </div>
-                                                       <div class="col-md-12 mt-2">
-                                                            <div id="demo1" class="collapse">
-                                                                <div class="panel-body" style="padding:10px; background-color:#dedbf1;  border: 1px solid #e9e5e5; border-radius: 5px;">
-                                                                   <form method="POST" action="{{ route('work-save') }}">
-                                                                        @csrf
-                                                                    <div class="row">
-                                                                        <div class="col-md-3">
-                                                                            <div class="mb-1">
-                                                                                    <label class="form-label">Company Name <span class="text-danger">*</span></label>
-                                                                                 <div class="form-icon position-relative">
-                                                                                        <input type="text" for="company name" name="companyname" class="form-control ps-2" placeholder="Company Name" required="">
-                                                                                 </div>
-                                                                             </div>
-                                                                        </div>
-                                                                        <div class="col-md-3">
-                                                                            <div class="mb-1">
-                                                                                    <label class="form-label" for="designation">Designation <span class="text-danger">*</span></label>
-                                                                              <div class="form-icon position-relative">
-                                                                                    <input type="text" for="designation" name="designation" class="form-control ps-2" placeholder="Designation" required="">
-                                                                                </div>
-                                                                            </div>
-                                                                        </div>
-                                                                        <div class="col-md-3 mt-4" style="display:flex; font-size:15px; font-weight:600;">
-                                                                                Currently working in that company?
-                                                                            <div class="form-check form-switch" id="checkCurrentlyWorking" style="margin-left: 7px; margin-top: 14px;">
-                                                                                    <input class="form-check-input" type="checkbox" name="currentlyworking" value="0" onchange="checkCurrentlyWorking(this)">
-                                                                                    <label class="form-check-label" for="checkCurrentlyWorking"></label>
-                                                                            </div>
-                                                                        </div>
-                                                                              <div class="col-md-3">
-                                                                                    <div class="row">
-                                                                                        <div class="col-md-6">
-                                                                                            <div class="mb-1">
-                                                                                                    <label class="form-label">Start Date <span class="text-danger">*</span></label>
-                                                                                                <div class="form-icon position-relative">
-                                                                                                    <select name="startdate" id="start date" class="form-control frm" required="">
-                                                                                                        <option disabled="" selected="" value="">Year</option>
-                                                                                                        @php
-                                                                                                            $firstYear = (int)date('Y') - 20;
-                                                                                                            $lastYear = $firstYear + 20;
-                                                                                                            for($i=$firstYear;$i<=$lastYear;$i++){
-                                                                                                        @endphp
-                                                                                                        <option value="{{$i}}">{{$i}}</option>
-                                                                                                        @php
-                                                                                                            }
-                                                                                                        @endphp
-
-                                                                                                    </select>
-                                                                                                </div>
-                                                                                            </div>
-                                                                                        </div>
-                                                                                        <div class="col-md-6">
-                                                                                            <div class="mb-1 mt-2">
-                                                                                                    <label class="form-label"></label>
-                                                                                                <div class="form-icon position-relative">
-                                                                                                    <select name="startmonth" id="month" class="form-control frm" required="">
-                                                                                                        <option disabled="" selected="" value="">Month</option>
-                                                                                                        <option value="01">January</option>
-                                                                                                        <option value="02">February</option>
-                                                                                                        <option value="03">March</option>
-                                                                                                        <option value="04">April</option>
-                                                                                                        <option value="05">May</option>
-                                                                                                        <option value="06">June</option>
-                                                                                                        <option value="07">July</option>
-                                                                                                        <option value="08">August</option>
-                                                                                                        <option value="09">September</option>
-                                                                                                        <option value="10">October</option>
-                                                                                                        <option value="11">November</option>
-                                                                                                        <option value="12">December</option>
-                                                                                                    </select>
-                                                                                                </div>
-                                                                                            </div>
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>
-                                                                                <div class="col-md-3" id="end_date_div">
-                                                                                    <div class="row">
-                                                                                         <div class="col-md-6">
-                                                                                            <div class="mb-1">
-                                                                                                    <label class="form-label">End Date <span class="text-danger">*</span></label>
-                                                                                                <div class="form-icon position-relative">
-                                                                                                    <select name="enddate" id="end date" class="form-control frm">
-                                                                                                        <option disabled="" selected="" value="">Year</option>
-                                                                                                        @php
-                                                                                                            $firstYear = (int)date('Y') - 20;
-                                                                                                            $lastYear = $firstYear + 20;
-                                                                                                            for($i=$firstYear;$i<=$lastYear;$i++){
-                                                                                                        @endphp
-                                                                                                        <option value="{{$i}}">{{$i}}</option>
-                                                                                                        @php
-                                                                                                            }
-                                                                                                        @endphp
-
-                                                                                                    </select>
-                                                                                                </div>
-                                                                                            </div>
-                                                                                        </div>
-                                                                                        <div class="col-md-6">
-                                                                                            <div class="mb-1 mt-2">
-                                                                                                    <label class="form-label"></label>
-                                                                                                <div class="form-icon position-relative">
-                                                                                                    <select name="endmonth" id="month" class="form-control frm">
-                                                                                                        <option disabled="" selected="" value="">Month</option>
-                                                                                                        <option value="01">January</option>
-                                                                                                        <option value="02">February</option>
-                                                                                                        <option value="03">March</option>
-                                                                                                        <option value="04">April</option>
-                                                                                                        <option value="05">May</option>
-                                                                                                        <option value="06">June</option>
-                                                                                                        <option value="07">July</option>
-                                                                                                        <option value="08">August</option>
-                                                                                                        <option value="09">September</option>
-                                                                                                        <option value="10">October</option>
-                                                                                                        <option value="11">November</option>
-                                                                                                        <option value="12">December</option>
-                                                                                                    </select>
-                                                                                                </div>
-                                                                                            </div>
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>
-                                                                          </div>
-                                                                        <div class="col-md-12">
-                                                                             <div class="mt-2">
-                                                                                <div class="text-end">
-                                                                                    <button class="btn btncl"><i class="fa fa-refresh"></i></button> 
-                                                                                    <button class="btn btn2" type="submit">Save</button>                                                                                                              
-                                                                                </div>
-                                                                            </div>
-                                                                        </div>  
-                                                                   </form>
-                                                                </div>
-                                                            </div>
-                                                        </div>
-                                                    <div class="table-responsive mt-2">
-                                                    @if(count($work_experience)>0)
-                                                        <table class="table table-bordered list_table" style="margin-bottom: 10px;">
-                                                            <thead>
-                                                                <tr>
-                                                                    <th>Company Name</th>
-                                                                    <th>Designation</th>
-                                                                    <th>Currently working</th>
-                                                                    <th>Start Date</th>
-                                                                    <th>End Date</th>
-                                                                    <th>Action</th>
-                                                                </tr>
-                                                            </thead>
-                                                            <tbody>
-                                                               @foreach($work_experience as $row)                                                               
-                                                                    <tr>
-                                                                        <td style="font-size: 11px;">{{$row->company_name}}</td>
-                                                                        <td style="font-size: 11px;">{{$row->designation}}</td> 
-                                                                        <td style="font-size: 11px;">{{$row->currently_working == 0 ? 'off' : 'on'}}</td> 
-                                                                        <td style="font-size: 11px;">{{date("d M, Y", strtotime($row->start_date))}}</td>
-                                                                        <td style="font-size: 11px;">{{date("d M, Y", strtotime($row->end_date))}}</td>
-                                                                         <td class="text-center" style="width: 75px;">
-                                                                                <div class="icon_bar" style="border: none;">
-                                                                                   <a role="" data-bs-toggle="collapse" data-bs-parent="#collapse" href="#collapse1" aria-expanded="true" aria-controls="collapse1">
-                                                                                        <i class="fa fa-edit" data-toggle="collapse" data-target="#demo12" onclick="editWork({{$row}})"></i>
-                                                                                    </a>
-                                                                                    <i class="fa fa-trash delete_work" data-id="{{ $row->id }}"></i>
-                                                                                </div>
-                                                                         </td>   
-                                                                    </tr> 
-                                                                @endforeach                                                              
-                                                            </tbody>
-                                                        </table>
-                                                        @else
-                                                        <div class="alert  mt-1 mb-3" style="border-color: #e9f0f3; font-size: 12px !important; color: #dc3545; border-radius: 30px; padding: 8px 15px;">
-                                                            <span>No Work Experience available.</span>
-                                                        </div> 
-                                                        @endif
-                                                    </div>
-                                                    <div class="col-md-12 mb-1">
-                                                            <div id="demo12" class="collapse">
-                                                                <div class="panel-body mb-2" style="padding:10px; background-color:#dedbf1;  border: 1px solid #e9e5e5; border-radius: 5px;">
-                                                                   <form method="POST" action="{{ route('work-save') }}"  id="edit-work">
-                                                                        @csrf
-                                                                    <div class="row">
-                                                                        <div class="col-md-3">
-                                                                            <div class="mb-1">
-                                                                                    <label class="form-label">Company Name <span class="text-danger">*</span></label>
-                                                                                 <div class="form-icon position-relative">
-                                                                                        <input type="text" for="company name" name="companyname" class="form-control ps-2" placeholder="Company Name" required="">
-                                                                                 </div>
-                                                                             </div>
-                                                                        </div>
-                                                                        <div class="col-md-3">
-                                                                            <div class="mb-1">
-                                                                                    <label class="form-label" for="designation">Designation <span class="text-danger">*</span></label>
-                                                                              <div class="form-icon position-relative">
-                                                                                    <input type="text" for="designation" name="designation" class="form-control ps-2" placeholder="Designation" required="">
-                                                                                </div>
-                                                                            </div>
-                                                                        </div>
-                                                                        <div class="col-md-3 mt-4" style="display:flex; font-size:15px; font-weight:600;">
-                                                                                Currently working in that company?
-                                                                            <div class="form-check form-switch" style="margin-left: 7px; margin-top: 14px;">
-                                                                                    <input class="form-check-input" type="checkbox" id="flexSwitchCheckChecked" name="checkbox">
-                                                                                    <label class="form-check-label" for="flexSwitchCheckChecked"></label>
-                                                                            </div>
-                                                                        </div>
-                                                                        <div class="col-md-3">
-                                                                                    <div class="row">
-                                                                                        <div class="col-md-6">
-                                                                                            <div class="mb-1">
-                                                                                                    <label class="form-label">Start Date <span class="text-danger">*</span></label>
-                                                                                                <div class="form-icon position-relative">
-                                                                                                    <select name="startdate" id="start date" class="form-control frm" required="">
-                                                                                                        <option disabled="" selected="" value="">Year</option>
-                                                                                                        @php
-                                                                                                            $firstYear = (int)date('Y') - 20;
-                                                                                                            $lastYear = $firstYear + 20;
-                                                                                                            for($i=$firstYear;$i<=$lastYear;$i++){
-                                                                                                        @endphp
-                                                                                                        <option value="{{$i}}">{{$i}}</option>
-                                                                                                        @php
-                                                                                                            }
-                                                                                                        @endphp
-
-                                                                                                    </select>
-                                                                                                </div>
-                                                                                            </div>
-                                                                                        </div>
-                                                                                        <div class="col-md-6">
-                                                                                            <div class="mb-1 mt-2">
-                                                                                                    <label class="form-label"></label>
-                                                                                                <div class="form-icon position-relative">
-                                                                                                    <select name="startmonth" id="month" class="form-control frm" required="">
-                                                                                                        <option disabled="" selected="" value="">Month</option>
-                                                                                                        <option value="01">January</option>
-                                                                                                        <option value="02">February</option>
-                                                                                                        <option value="03">March</option>
-                                                                                                        <option value="04">April</option>
-                                                                                                        <option value="05">May</option>
-                                                                                                        <option value="06">June</option>
-                                                                                                        <option value="07">July</option>
-                                                                                                        <option value="08">August</option>
-                                                                                                        <option value="09">September</option>
-                                                                                                        <option value="10">October</option>
-                                                                                                        <option value="11">November</option>
-                                                                                                        <option value="12">December</option>
-                                                                                                    </select>
-                                                                                                </div>
-                                                                                            </div>
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>
-                                                                                <div class="col-md-3">
-                                                                                    <div class="row">
-                                                                                         <div class="col-md-6">
-                                                                                            <div class="mb-1">
-                                                                                                    <label class="form-label">End Date <span class="text-danger">*</span></label>
-                                                                                                <div class="form-icon position-relative">
-                                                                                                    <select name="enddate" id="end date" class="form-control frm" required="">
-                                                                                                        <option disabled="" selected="" value="">Year</option>
-                                                                                                        @php
-                                                                                                            $firstYear = (int)date('Y') - 20;
-                                                                                                            $lastYear = $firstYear + 20;
-                                                                                                            for($i=$firstYear;$i<=$lastYear;$i++){
-                                                                                                        @endphp
-                                                                                                        <option value="{{$i}}">{{$i}}</option>
-                                                                                                        @php
-                                                                                                            }
-                                                                                                        @endphp
-
-                                                                                                    </select>
-                                                                                                </div>
-                                                                                            </div>
-                                                                                        </div>
-                                                                                        <div class="col-md-6">
-                                                                                            <div class="mb-1 mt-2">
-                                                                                                    <label class="form-label"></label>
-                                                                                                <div class="form-icon position-relative">
-                                                                                                    <select name="endmonth" id="month" class="form-control frm" required="">
-                                                                                                        <option disabled="" selected="" value="">Month</option>
-                                                                                                        <option value="01">January</option>
-                                                                                                        <option value="02">February</option>
-                                                                                                        <option value="03">March</option>
-                                                                                                        <option value="04">April</option>
-                                                                                                        <option value="05">May</option>
-                                                                                                        <option value="06">June</option>
-                                                                                                        <option value="07">July</option>
-                                                                                                        <option value="08">August</option>
-                                                                                                        <option value="09">September</option>
-                                                                                                        <option value="10">October</option>
-                                                                                                        <option value="11">November</option>
-                                                                                                        <option value="12">December</option>
-                                                                                                    </select>
-                                                                                                </div>
-                                                                                            </div>
-                                                                                        </div>
-                                                                                    </div>
-                                                                                </div>
-                                                                        <div class="col-md-12">
-                                                                             <div class="mt-3">
-                                                                                <div class="text-end">
-                                                                                    <button class="btn btncl"><i class="fa fa-refresh"></i></button> 
-                                                                                    <button class="btn btn2">Update</button>                                                                                                                
-                                                                                </div>
-                                                                            </div>
-                                                                        </div>                                                                                                                                   
-                                                                    </div>
-                                                                </form>
-                                                                </div>
-                                                            </div>
-                                                        </div>
-                                                </div>
-                                           </div><!--end row-->  
-                                           <div class="row align-items-center mt-4">
-                                                <div class="col-md-12" style="background: rgb(255, 255, 255);border-radius: 0.25rem;">
-                                                    <div class="education">
-                                                        <i class="fa fa-align-center" style="padding: 7px;"></i>Test Score
-                                                    </div>
-                                                    <div class="row">
-                                                        <div class="col-md-6 mt-2">
-                                                            <div style="margin:0px !important; font-size:12px;font-weight: 600;">
-                                                                   Do you have any Test Score?
-                                                                <div class="form-check-inline ps-3">
-                                                                    <label class="form-check-label" for="radio1">
-                                                                        <input type="radio" {{ Auth::user()->is_test_score == 1 ? 'checked' : ''}} class="form-check-input" name="test_score" value="yes"  style="font-size: 12px;"  onclick="checkTestScore('1')"> Yes
-                                                                    </label>
-                                                                </div>
-                                                                <div class="form-check-inline">
-                                                                    <label class="form-check-label" for="radio2">
-                                                                        <input type="radio" {{ Auth::user()->is_test_score == 0 ? 'checked' : ''}} class="form-check-input" name="test_score" value="no"  style="font-size: 12px;"  onclick="checkTestScore('0')"> No
-                                                                    </label>
-                                                                </div>
-                                                            </div>
-                                                        </div>
-                                                        <div class="col-md-6 mt-2" id="add_test_div" style="display:none;">
-                                                            <div class="text-end" style="margin:0px !important;">
-                                                                <a role="button" data-bs-toggle="collapse" data-bs-parent="#collapse" href="#collapse1" aria-expanded="true" aria-controls="collapse1">
-                                                                    <button type="button" class="btn btn2" data-toggle="collapse" data-target="#demo2">Add</button>
-                                                                </a>
-                                                            </div>
-                                                        </div>
-                                                    </div>
-                                                    <div class="col-md-12">
-                                                        <div id="demo2" class="collapse">
-                                                            <div class="col-md-12">
-                                                                                                                 
-                                                              <div class="col-md-2">
-                                                                   <div class="btn-group test_list">
-                                                                        <button class="btn btn5" onclick="changeTestName('IELTS')">IELTS</button>       
-                                                                        <button class="btn btn6" onclick="changeTestName('PTE')">PTE</button>       
-                                                                        <button class="btn btn7" onclick="changeTestName('TOEFL')">TOEFL</button>           
-                                                                    </div>
-                                                              </div>
-                                                     
-                                                        <div class="panel-body" style="padding:10px; background-color:adedbf1;  border: 1px solid #e9e5e5; border-radius: 5px;">
-                                                            <form method="POST" action="{{ route('score-save') }}">
-                                                                        @csrf
-                                                               <div class="row">
-                                                                    <div class="col-md-4">
-                                                                        <div class="mb-1">
-                                                                               <label class="form-label" for="test date">Test Date</label>
-                                                                            <div class="form-icon position-relative">
-                                                                               <input name="testdate" type="text" class="form-control start" placeholder="Test Date" autocomplete="off">
-                                                                            </div>
-                                                                        </div>
-                                                                    </div>
-                                                                    <div class="col-md-4">
-                                                                       <div class="mb-1">
-                                                                               <label class="form-label" for="expiration date">Expiration Date</label>
-                                                                            <div class="form-icon position-relative">
-                                                                               <input name="expirationdate" type="text" class="form-control end" placeholder="Expiration Date" autocomplete="off">
-                                                                            </div>
-                                                                        </div>
-                                                                    </div>
-                                                                    <div class="col-md-4">
-                                                                        <div class="mb-1">
-                                                                                <label class="form-label" for="test name">Test Name</label>
-                                                                            <div class="form-icon position-relative">
-                                                                                <input type="text"  for="test name" name="testname" class="form-control ps-2" id="testname" placeholder="IELTS" required="">
-                                                                            </div>
-                                                                        </div>
-                                                                    </div>
-                                                                    
-                                                                        <div class="row">
-                                                                            <div class="col-md-2 mt-2">
-                                                                                <div class="mb-1">
-                                                                                        <label class="form-label">Overall Score</label>
-                                                                                    <div class="form-icon position-relative">
-                                                                                        <input type="text"  for="overall score" name="overallscore" class="form-control ps-2" placeholder="Enter Score" required="">
-                                                                                    </div>
-                                                                                </div>
-                                                                            </div>
-                                                                            <div class="col-md-2">
-                                                                                <div class="mb-1 mt-2">
-                                                                                        <label class="form-label">Listening</label>
-                                                                                    <div class="form-icon position-relative">
-                                                                                        <input type="text"  for="listening" name="listening" class="form-control ps-2" placeholder="Enter Score" required="">
-                                                                                    </div>
-                                                                                </div>
-                                                                            </div>
-                                                                            <div class="col-md-2">
-                                                                                <div class="mb-1 mt-2">
-                                                                                        <label class="form-label">Speaking</label>
-                                                                                    <div class="form-icon position-relative">
-                                                                                        <input type="text"  for="speaking" name="speaking" class="form-control ps-2" placeholder="Enter Score" required="">
-                                                                                    </div>
-                                                                                </div>
-                                                                            </div>
-                                                                            <div class="col-md-2">
-                                                                                <div class="mb-1 mt-2">
-                                                                                        <label class="form-label">Writing</label>
-                                                                                    <div class="form-icon position-relative">
-                                                                                        <input type="text"  for="writing" name="writing" class="form-control ps-2" placeholder="Enter Score" required="">
-                                                                                    </div>
-                                                                                </div>
-                                                                            </div>
-                                                                            <div class="col-md-2">
-                                                                                <div class="mb-1 mt-2">
-                                                                                        <label class="form-label">Reading</label>
-                                                                                    <div class="form-icon position-relative">
-                                                                                        <input type="text"  for="reading" name="reading" class="form-control ps-2" placeholder="Enter Score" required="">
-                                                                                    </div>
-                                                                                </div>
-                                                                            </div>
-                                                                            <div class="col-md-2">
-                                                                                <div class="mt-4 pt-4">
-                                                                                    <div class="text-end">
-                                                                                        <button class="btn btncl"><i class="fa fa-refresh"></i></button> 
-                                                                                        <button class="btn btn2">Save</button>                                                                                                                
-                                                                                    </div>
-                                                                                </div>
-                                                                            </div>     
-                                                                        </div>                                                                                                                                                                                                                                                                     
-                                                                   </div>
-                                                              </form>
-                                                            </div> 
-                                                       
-                                                        </div>
-                                                    </div>
-                                                    <div class="table-responsive mt-2">
-                                                    @if(count($score)>0)
-                                                        <table class="table table-bordered list_table" style="margin-bottom:10px;">
-                                                            <tbody>
-                                                            @foreach($score as $row)
-                                                                <tr>
-                                                                    <td>
-                                                                         <div class="institute_info">
-                                                                            <div class="left">
-                                                                                <i class="fa fa-align-center" style="padding: 7px;"></i>
-                                                                            </div>
-                                                                            <div class="right">
-                                                                                <span class="main_title" style="font-size: 11px;font-weight: 600; display: flex;"> Testing System</span>
-                                                                                <span class="label_badge_light test_score_level">{{$row->test_name}}</span>
-                                                                                <span style="font-weight: 400; font-size: 12px;">Test Date: {{date("d M, Y", strtotime($row->test_date))}}</span>
-                                                                            </div>
-                                                                        </div>
-                                                                    </td>
-                                                                    <td class="text-center">
-                                                                        <strong style="color: rgb(57, 59, 62); font-size: 12px;">{{$row->overall_score}}</strong><br>
-                                                                        <strong style="color: rgb(57, 59, 62); font-size: 12px;">Overall</strong>
-                                                                    </td>
-                                                                    <td class="text-center">
-                                                                        <strong style="color: rgb(57, 59, 62); font-size: 12px;">{{$row->listening}}</strong><br>
-                                                                        <strong style="font-size: 12px;">Listening</strong>
-                                                                    </td>
-                                                                    <td class="text-center">
-                                                                        <strong style="color: rgb(57, 59, 62); font-size: 12px;">{{$row->speaking}}</strong><br>
-                                                                        <strong style="font-size: 12px;">Speaking</strong>
-                                                                    </td>
-                                                                    <td class="text-center">
-                                                                        <strong style="color: rgb(57, 59, 62); font-size: 12px;">{{$row->writing}}</strong><br>
-                                                                        <strong style="font-size: 12px;">Writing</strong>
-                                                                    </td>
-                                                                    <td class="text-center">
-                                                                        <strong style="color: rgb(57, 59, 62); font-size: 12px;">{{$row->reading}}</strong><br>
-                                                                        <strong style="font-size: 12px;">Reading</strong>
-                                                                    </td>
-                                                                    <td class="text-center" style="width: 75px;">
-                                                                        <div class="icon_bar">
-                                                                             <a role="" data-bs-toggle="collapse" data-bs-parent="#collapse" href="#collapse1" aria-expanded="true" aria-controls="collapse1">
-                                                                                    <i class="fa fa-edit" data-toggle="collapse" data-target="#demo13" onclick="editScore({{$row}})"></i>
-                                                                                </a>
-                                                                                <i class="fa fa-trash delete_score" data-id="{{ $row->id }}"></i>
-                                                                        </div>
-                                                                    </td>                                                       
-                                                                </tr>
-                                                                @endforeach
-                                                            </tbody>
-                                                        </table>
-                                                        @else
-                                                            <div class="alert  mt-1 mb-3" style="border-color: #e9f0f3; font-size: 12px !important; color: #dc3545; border-radius: 30px; padding: 8px 15px;">
-                                                                <span>No Test Score available.</span>
-                                                            </div> 
-                                                        @endif
-                                                    </div>
-                                            <div class="col-md-12">
-                                                <div id="demo13" class="collapse">
-                                                    <div class="col-md-12">                                                                                                                                                                                             
-                                                        <div class="panel-body mb-2" style="padding:10px; background-color:#dedbf1;  border: 1px solid #e9e5e5; border-radius: 5px;">
-                                                            <form method="POST" action="{{ route('score-save') }}" id="edit-score">
-                                                                        @csrf
-                                                               <div class="row">
-                                                                    <div class="col-md-4">
-                                                                        <div class="mb-1">
-                                                                               <label class="form-label" for="test date">Test Date</label>
-                                                                            <div class="form-icon position-relative">
-                                                                               <input name="testdate" type="text" class="form-control date" placeholder="Test Date" autocomplete="off">
-                                                                            </div>
-                                                                        </div>
-                                                                    </div>
-                                                                    <div class="col-md-4">
-                                                                       <div class="mb-1">
-                                                                               <label class="form-label" for="expiration date">Expiration Date</label>
-                                                                            <div class="form-icon position-relative">
-                                                                               <input name="expirationdate" type="text" class="form-control date1" placeholder="Expiration Date" autocomplete="off">
-                                                                            </div>
-                                                                        </div>
-                                                                    </div>
-                                                                    <div class="col-md-4">
-                                                                        <div class="mb-1">
-                                                                                <label class="form-label" for="test name">Test Name</label>
-                                                                            <div class="form-icon position-relative">
-                                                                                <input type="text"  for="test name" name="testname" class="form-control ps-2" id="testname" placeholder="IELTS" required="">
-                                                                            </div>
-                                                                        </div>
-                                                                    </div>
-                                                                    
-                                                                        <div class="row">
-                                                                            <div class="col-md-2 mt-2">
-                                                                                <div class="mb-1">
-                                                                                        <label class="form-label">Overall Score</label>
-                                                                                    <div class="form-icon position-relative">
-                                                                                        <input type="text"  for="overall score" name="overallscore" class="form-control ps-2" placeholder="Enter Score" required="">
-                                                                                    </div>
-                                                                                </div>
-                                                                            </div>
-                                                                            <div class="col-md-2">
-                                                                                <div class="mb-1 mt-2">
-                                                                                        <label class="form-label">Listening</label>
-                                                                                    <div class="form-icon position-relative">
-                                                                                        <input type="text"  for="listening" name="listening" class="form-control ps-2" placeholder="Enter Score" required="">
-                                                                                    </div>
-                                                                                </div>
-                                                                            </div>
-                                                                            <div class="col-md-2">
-                                                                                <div class="mb-1 mt-2">
-                                                                                        <label class="form-label">Speaking</label>
-                                                                                    <div class="form-icon position-relative">
-                                                                                        <input type="text"  for="speaking" name="speaking" class="form-control ps-2" placeholder="Enter Score" required="">
-                                                                                    </div>
-                                                                                </div>
-                                                                            </div>
-                                                                            <div class="col-md-2">
-                                                                                <div class="mb-1 mt-2">
-                                                                                        <label class="form-label">Writing</label>
-                                                                                    <div class="form-icon position-relative">
-                                                                                        <input type="text"  for="writing" name="writing" class="form-control ps-2" placeholder="Enter Score" required="">
-                                                                                    </div>
-                                                                                </div>
-                                                                            </div>
-                                                                            <div class="col-md-2">
-                                                                                <div class="mb-1 mt-2">
-                                                                                        <label class="form-label">Reading</label>
-                                                                                    <div class="form-icon position-relative">
-                                                                                        <input type="text"  for="reading" name="reading" class="form-control ps-2" placeholder="Enter Score" required="">
-                                                                                    </div>
-                                                                                </div>
-                                                                            </div>
-                                                                            <div class="col-md-2">
-                                                                                <div class="mt-4 pt-4">
-                                                                                    <div class="text-end">
-                                                                                        <button class="btn btncl"><i class="fa fa-refresh"></i></button> 
-                                                                                        <button class="btn btn2">Update</button>                                                                                                                
-                                                                                    </div>
-                                                                                </div>
-                                                                            </div>     
-                                                                        </div>                                                                                                                                                                                                                                                                     
-                                                                   </div>
-                                                              </form>
-                                                            </div> 
-                                                       
-                                                        </div>
-                                                    </div>
-                                                </div>
-                                            </div>                                                           
-                                         </div><!--end col-->
-                                        @php
-                                        $button_status=false;
-                                        if(Auth::user()->is_work_experience == 1 && count($work_experience)>0 &&  Auth::user()->is_test_score == 1 && count($score)>0){
-                                            $button_status=true;   
-                                        }
-                                        if(Auth::user()->is_work_experience == 0 &&  Auth::user()->is_test_score == 1 && count($score)>0){
-                                            $button_status=true;   
-                                        }
-                                        if(Auth::user()->is_work_experience == 1 && count($work_experience)>0 &&  Auth::user()->is_test_score == 0){
-                                            $button_status=true;   
-                                        }
-                                        if(Auth::user()->is_work_experience == 0  &&  Auth::user()->is_test_score == 0){
-                                            $button_status=true;   
-                                        }
-                                        @endphp
-                                        @if($button_status)
-                                            <div class="col-lg-12 mt-3 mb-3 ms-3" style="width:100%;">
-                                                <a href="{{route('save-as-complete')}}" class="btn btn3 pull-right">Save as complete</a>    
-                                            </div>
-                                        @endif
-                                </div><!--end col-->
-                                    
-                                    
-                                </div><!--end row-->
-                            </div><!--end container-->
-                        </div>
-
-                        @else
-                        <div class="card rounded border-0 shadow" style="background-color:white;">
-                                <div class="row">
-                                    <div class="col-12">
-                                        <div class="tab">
-                                            <!-- Proposal Tab -->
-                                                <div class="col-md-12 p-4">
-                                                    <form method="POST" action="{{ route('proposal-save') }}">
-                                                        @csrf
-                                                       
-                                                            <div class="col-md-12">
-                                                                <div class="mb-2">
-                                                                    <label class="form-label">Title</label>
-                                                                    <div class="form-icon position-relative">
-                                                                        <input type="text" class="form-control" placeholder="Title" name="title" required="">
-                                                                    </div>
-                                                                </div>
-                                                            </div>
-                                                        <div class="row">
-                                                            <div class="col-md-4 back">
-                                                                <div class="mb-2">
-                                                                    <label class="form-label">Methology</label>
-                                                                    <select class="form-control" id="" name="methology">
-                                                                        <option>Methology</option>
-                                                                        <option>Quantitative </option>
-                                                                        <option>Qualitative </option>
-                                                                    </select>
-                                                                </div>
-                                                            </div>
-                                                
-                                                            <div class="col-md-4">
-                                                                <div class="mb-2">
-                                                                    <label class="form-label">Department</label>
-                                                                    <div class="form-icon position-relative">
-                                                                        <input type="text" class="form-control" placeholder="Department" name="department" required="">
-                                                                    </div>
-                                                                </div>
-                                                            </div>
-                                                    
-                                                            <div class="col-md-4 back">
-                                                                <div class="mb-2">
-                                                                    <label class="form-label">Funding Status</label>
-                                                                    <select class="form-control" id="" name="status">
-                                                                        <option>Funding Status</option>
-                                                                        <option>Self-Funded</option>
-                                                                        <option>Govt. Scholarship</option>
-                                                                        <option>Other Scholarship</option>
-                                                                    </select>
-                                                                </div>
-                                                            </div>
-                                                        </div>
-                                                        <div class="row">
-                                                        <div class="col-md-10">
-                                                                <label class="form-label" for="proposal">Proposal</label>
-                                                                <input type="file" accept="application/pdf,application/docx,application/doc" name="documentfile" id="documentfile" class="form-control">
-                                                            </div>
-                                                        <div class="col-md-2">
-                                                            <div class="mt-4 pt-3">
-                                                                <div class="text-end">
-                                                                    <button class="btn btn2">Save</button>                                                                                                                
-                                                                </div>
-                                                            </div>
-                                                        </div> 
-                                                        </div>    
-                                                    </form>
-                                                </div>
-                                                
-                                                <!--proposal table -->
-
-                                                <div class="col-md-12 mb-1">
-                                                    <div class="scrolled_content_part" style="width: 96%; margin-left: 20px;">
-                                                        <div class="single_ad_pref_item1">                                                                         
-                                                            <div class="serial">
-                                                                <strong style="font-size:13px; margin-left: 10px;">Serial No</strong>
-                                                            </div>
-                                                            <div class="pro_title"  style="margin-right:9rem !important;">                                                         
-                                                                <strong style="font-size:13px;">Title</strong></br>                                                   
-                                                            </div>
-                                                            <div class="pro_type"  style="margin-right:3rem !important;">                                                                          
-                                                                <strong style="font-size:13px;">Proposal</strong>                                                                         
-                                                            </div>
-                                                            <div class="actions">                                                                          
-                                                                <strong style="font-size:13px; margin-right: 20px;">Action</strong>                                                                            
-                                                            </div>
-                                                        </div>
-                                                    </div>
-                                                </div>  
-                                                <div class="col-md-12 mb-1">
-                                                    <div style="width: 96%; margin-left: 20px;">
-                                                        @foreach($proposal as $row)    
-                                                            <div class="single_ad_pref_item2">
-                                                                <div class="student mt-2 pt-1" style="width: 20%; margin-left: 10px;">                                                                                                                                    
-                                                                    <strong style="font-size:13px; margin-left: 20px;">{{$row->student_id}}</strong>                                                               
-                                                                </div>
-                                                                <div class="pro_title" style="width: 46%; margin-left: 5.5rem;">
-                                                                    <strong style="font-size:13px;">{{$row->title}}</strong></br>
-                                                                    <span style="font-size:10px;">{{$row->methology}}</span>
-                                                                    <span>.</span>
-                                                                    <span style="font-size:10px;">{{$row->department}}</span> 
-                                                                    <span>.</span>  
-                                                                    <span style="font-size:10px;">{{$row->status}}</span>                                              
-                                                                </div>
-                                                                <div class="pro_type mt-2 pt-1" style="width: 20%;">                                                                          
-                                                                    <strong style="font-size:13px;">pdf</strong>                                                                         
-                                                                </div>
-                                                                <div class="mt-2 pt-1" style="margin-right: 10px; width: 20%; text-align: end;">                                                                          
-                                                                    <a role="" data-bs-toggle="collapse" data-bs-parent="#collapse" href="#collapse2" aria-expanded="true" aria-controls="collapse2">
-                                                                        <i class="fa fa-edit change_pass_btn" style="font-size: 13px !important; padding: 4px;"  data-toggle="collapse" data-target="#demo14" onclick="editProposal({{$row}})"></i>
-                                                                    </a> 
-                                                                        <i class="fa fa-eye change_pass_btn" style="font-size: 13px !important; padding: 4px;"></i>
-                                                                        <i class="fa fa-trash change_pass_btn delete_proposal" style="font-size: 13px !important; padding: 4px;" data-id="{{ $row->id }}"></i>                                                                          
-                                                                </div>
-                                                            </div>
-                                                        @endforeach   
-                                                    </div>
-                                                </div>  
-
-                                                <!-- proposal Edit -->
-
-                                                <div class="col-md-12 mb-4">
-                                                    <div id="demo14" class="collapse" style="width: 95%; margin-left: 24px;">
-                                                        <div class="panel-body" style="padding:10px; background-color:#dedbf1;  border: 1px solid #e9e5e5; border-radius: 5px;">
-                                                            <form method="POST" action="" id="edit-proposal">
-                                                                @csrf
-                                                                    <div class="col-md-12">
-                                                                        <div class="mb-1">
-                                                                            <label class="form-label">Title</label>
-                                                                            <div class="form-icon position-relative">
-                                                                                <input type="text" class="form-control" placeholder="Title" name="title" required="">
-                                                                            </div>
-                                                                        </div>
-                                                                    </div>  
-                                                                    <div class="row">                                                                               
-                                                                        <div class="col-md-4 back">
-                                                                            <div class="mb-1">
-                                                                                    <label class="form-label">Methology</label>
-                                                                                <select class="form-control" id="" name="methology">
-                                                                                    <option>Methology</option>
-                                                                                    <option>Quantitative </option>
-                                                                                    <option>Qualitative </option>
-                                                                                </select>
-                                                                            </div>
-                                                                        </div> 
-
-                                                                        <div class="col-md-4">
-                                                                            <div class="mb-1">
-                                                                                <label class="form-label">Department</label>
-                                                                                <div class="form-icon position-relative">
-                                                                                    <input type="text" class="form-control" placeholder="Department" name="department" required="">
-                                                                                </div>
-                                                                            </div>
-                                                                        </div>
-                                                            
-                                                                        <div class="col-md-4 back">
-                                                                            <div class="mb-1">
-                                                                                <label class="form-label">Funding Status</label>
-                                                                                <select class="form-control" id="" name="status">
-                                                                                    <option>Funding Status</option>
-                                                                                    <option>Self-Funded</option>
-                                                                                    <option>Govt. Scholarship</option>
-                                                                                    <option>Other Scholarship</option>
-                                                                                </select>
-                                                                            </div>
-                                                                        </div>
-                                                                  </div>
-                                                                <div class="row">
-                                                                    <div class="col-md-10 mb-3">
-                                                                        <label class="form-label" for="proposal">Proposal</label>
-                                                                        <input type="file" accept="application/pdf,application/docx,application/doc" name="documentfile" id="documentfile" class="form-control">
-                                                                    </div>  
-                                                                    <div class="col-md-2">
-                                                                        <div class="mt-4 pt-3">
-                                                                            <div class="text-end">
-                                                                                <button class="btn btncl"><i class="fa fa-refresh"></i></button> 
-                                                                                <button class="btn btn2">Update</button>                                                                                                                
-                                                                            </div>
-                                                                        </div>
-                                                                    </div> 
-                                                                </div>                                                                                                                                             
-                                                            </form>
-                                                        </div>
-                                                    </div>                                                                                                                    
-                                                </div> 
- 
-                                                <div class="col-md-12">
-                                                    <!-- <form method="POST" enctype="multipart/form-data" action="{{route('proposal_media_upload')}}">
-                                                        @csrf
-                                                        <div class="col-md-12 p-4" style="margin-top: -1rem; display:flex;">
-                                                            <div class="col-md-10">
-                                                                <label class="form-label" for="proposal">Proposal</label>
-                                                                <input type="file" accept="application/pdf,application/docx,application/doc" name="documentfile" id="documentfile" class="form-control">
-                                                            </div>
-                                                            <div class="col-md-2 text-end mt-4 pt-3">
-                                                                <button class="btn btn2">Upload</button>                                                                                                                
-                                                            </div>                               
-                                                        </div>
-                                                    </form> -->
-                                                    <!-- @foreach($proposal_files as $row)         
-                                                        <div class="col-md-12 mb-4">
-                                                            <div class="scrolled_content_part" style="width: 96%; margin-left: 20px;">
-                                                                <div class="single_ad_pref_item">
-                                                                    <div class="destination">                                                                           
-                                                                        <div class="destination_info">
-                                                                            <strong style="font-size:13px;">Proposal</strong>
-                                                                        </div>
-                                                                    </div>
-                                                                    <div class="left">
-                                                                        <div class="uni_details">                                                                                
-                                                                            <div class="inner_right">
-                                                                                <strong style="font-size:13px;">{{$row->file_type}}</strong></br>                                                   
-                                                                            </div>
-                                                                        </div>
-                                                                    </div>
-                                                                    <div class="middle">
-                                                                        <span style="font-size:11px;">{{$row->created_at}}</span></br>
-                                                                        
-                                                                    </div>
-                                                                    <div class="left">                                                                          
-                                                                            <span style="font-size:11px;">0 views</span>                                                                            
-                                                                        </div>
-                                                                    <div class="status_column">
-                                                                                                                      
-                                                                        <div class="right">
-                                                                            <i class="fa fa-eye change_pass_btn" style="font-size: 13px !important; padding: 4px;"></i>
-                                                                            <i class="fa fa-trash change_pass_btn delete_proposal" style="font-size: 13px !important; padding: 4px;" data-id="{{ $row->id }}"></i>
-                                                                        </div>
-                                                                    </div>
-                                                                </div>
-                                                            </div>
-                                                        </div>  
-                                                    @endforeach -->
-                                                </div>
-                                       
-
-                                        </div>
-                                    </div>
-                                </div>
-                                
-                            </div> 
-                        @endif
-                </div><!--end row-->
-            </div><!--end container-->
-        </section><!--end section-->
-        <!-- Hero End -->
-
-@endsection
-@push('js')
-
-<script type="text/javascript">
-    $( function() {
-        datepicker('.date');
-        datepicker('.date1');
-    });    
-    $('.delete_education').on('click', function(e) {
-        e.preventDefault();  
-        var delete_url="{{ url('education-remove') }}/"+$(this).data('id');
-        swal({
-            title: "Are you sure?",
-            text: "You will not be able to recover this data!",
-            type: "warning",
-            showCancelButton: true,
-            buttonsStyling: false,
-            confirmButtonClass: 'btn btn-primary',
-            cancelButtonClass: 'btn btn-light',
-            confirmButtonText: "Yes, delete!",
-            cancelButtonText: "No, cancel!"
-        },
-        function(isConfirm){
-            if(isConfirm){
-                $.ajax({
-                    url:delete_url,
-                    type: "GET",
-                    success: function(data){
-                        setTimeout(function() { location.reload(); }, 1000);
-                    }
-                });
-            }
-        });
-    });
-    $('.delete_work').on('click', function(e) {
-        e.preventDefault();  
-        var delete_url="{{ url('work-remove') }}/"+$(this).data('id');
-        swal({
-            title: "Are you sure?",
-            text: "You will not be able to recover this data!",
-            type: "warning",
-            showCancelButton: true,
-            buttonsStyling: false,
-            confirmButtonClass: 'btn btn-primary',
-            cancelButtonClass: 'btn btn-light',
-            confirmButtonText: "Yes, delete!",
-            cancelButtonText: "No, cancel!"
-        },
-        function(isConfirm){
-            if(isConfirm){
-                $.ajax({
-                    url:delete_url,
-                    type: "GET",
-                    success: function(data){
-                        setTimeout(function() { location.reload(); }, 1000);
-                    }
-                });
-            }
-        });
-    });
-    $('.delete_score').on('click', function(e) {
-        e.preventDefault();  
-        var delete_url="{{ url('score-remove') }}/"+$(this).data('id');
-        swal({
-            title: "Are you sure?",
-            text: "You will not be able to recover this data!",
-            type: "warning",
-            showCancelButton: true,
-            buttonsStyling: false,
-            confirmButtonClass: 'btn btn-primary',
-            cancelButtonClass: 'btn btn-light',
-            confirmButtonText: "Yes, delete!",
-            cancelButtonText: "No, cancel!"
-        },
-        function(isConfirm){
-            if(isConfirm){
-                $.ajax({
-                    url:delete_url,
-                    type: "GET",
-                    success: function(data){
-                        setTimeout(function() { location.reload(); }, 1000);
-                    }
-                });
-            }
-        });
-    });
-    $('.delete_proposal').on('click', function(e) {
-        e.preventDefault();  
-        var delete_url="{{ url('proposal-remove') }}/"+$(this).data('id');
-        swal({
-            title: "Are you sure?",
-            text: "You will not be able to recover this data!",
-            type: "warning",
-            showCancelButton: true,
-            buttonsStyling: false,
-            confirmButtonClass: 'btn btn-primary',
-            cancelButtonClass: 'btn btn-light',
-            confirmButtonText: "Yes, delete!",
-            cancelButtonText: "No, cancel!"
-        },
-        function(isConfirm){
-            if(isConfirm){
-                $.ajax({
-                    url:delete_url,
-                    type: "GET",
-                    success: function(data){
-                        setTimeout(function() { location.reload(); }, 1000);
-                    }
-                });
-            }
-        });
-    });
-    function editInstitute(row){       
-        $('#edit-institute').attr("action","{{ url('institution-update') }}/"+row.id);
-        $('#edit-institute').find('select[name="academiclevel"]').val(row.academic_level).trigger('change'); 
-        $('#edit-institute').find('input[name="subject"]').val(row.subject);
-        $('#edit-institute').find('input[name="institution"]').val(row.institution);
-        $('#edit-institute').find('select[name="passingyear"]').val(row.passing_year).trigger('change');
-        $('#edit-institute').find('input[name="result"]').val(row.result);
-        $('#edit-institute').find('select[name="startdate"]').val(new Date(row.start_date).getFullYear()).trigger('change');
-        $('#edit-institute').find('select[name="startmonth"]').val(String(new Date(row.start_date).getUTCMonth() + 1).padStart(2, '0')).trigger('change');
-        $('#edit-institute').find('select[name="enddate"]').val(new Date(row.end_date).getFullYear()).trigger('change');
-        $('#edit-institute').find('select[name="endmonth"]').val(String(new Date(row.end_date).getUTCMonth() + 1).padStart(2, '0')).trigger('change');
-    }
-    function editWork(row){
-        $('#edit-work').attr("action","{{ url('work-update') }}/"+row.id);       
-        $('#edit-work').find('input[name="companyname"]').val(row.company_name); 
-        $('#edit-work').find('input[name="designation"]').val(row.designation);
-        // $('#edit-work').find('input[name="checkbox"]').val(row.checkbox);
-        $('#edit-work').find('select[name="startdate"]').val(new Date(row.start_date).getFullYear()).trigger('change');
-        $('#edit-work').find('select[name="startmonth"]').val(String(new Date(row.start_date).getUTCMonth() + 1).padStart(2, '0')).trigger('change'); 
-        $('#edit-work').find('select[name="enddate"]').val(new Date(row.end_date).getFullYear()).trigger('change');
-        $('#edit-work').find('select[name="endmonth"]').val(String(new Date(row.end_date).getUTCMonth() + 1).padStart(2, '0')).trigger('change');
-    }
-     function editScore(row){  
-        console.log(new Date(row.test_date).toDateString());
-        $('#edit-score').attr("action","{{ url('score-update') }}/"+row.id);            
-        $('#edit-score').find('input[name="testdate"]').val(new Date(row.test_date).toDateString()); 
-        $('#edit-score').find('input[name="expirationdate"]').val(new Date(row.expiration_date).toDateString());
-        $('#edit-score').find('input[name="testname"]').val(row.test_name);
-        $('#edit-score').find('input[name="overallscore"]').val(row.overall_score);
-        $('#edit-score').find('input[name="listening"]').val(row.listening);
-        $('#edit-score').find('input[name="writing"]').val(row.writing);
-        $('#edit-score').find('input[name="reading"]').val(row.reading);
-        $('#edit-score').find('input[name="speaking"]').val(row.speaking);
-    }
-      function editProposal(row){   
-        // console.log(row); 
-        $('#edit-proposal').attr("action","{{ url('proposal-update') }}/"+row.id); 
-        $('#edit-proposal').find('input[name="title"]').val(row.title);
-        $('#edit-proposal').find('select[name="methology"]').val(row.methology).trigger('change');
-        $('#edit-proposal').find('input[name="department"]').val(row.department);
-        $('#edit-proposal').find('select[name="status"]').val(row.status).trigger('change');
-     }
-</script>
-@endpush

+ 0 - 814
resources/views/landing.blade - Copy (2).php

@@ -1,814 +0,0 @@
-<!DOCTYPE html>
-    <html lang="en">
-        <head>
-            <meta charset="utf-8" />
-            <title>Welcome - Research Admission Platform For Supervisor</title>
-            <meta name="viewport" content="width=device-width, initial-scale=1.0">
-            <meta name="description" content="Information & Guidance on the PhD Process, Connect with Supervisor and Many" />
-            <meta name="keywords" content="" />
-
-            <!-- facebook tags -->
-            <meta property="og:url" content="http://www.facebook.com/researchadmission"/>
-            <meta property="og:type" content="website"/>
-            <meta property="og:title" content="Research Admission"/>
-            <meta property="og:description" content="Information & Guidance on the PhD Process, Connect with Supervisor and Many"/>
-            <!-- Linkedin tags -->
-            <meta property="og:url" content="https://www.linkedin.com/company/researchadmission"/>
-            <meta property="og:type" content="website"/>
-            <meta property="og:title" content="Research Admission"/>
-            <meta property="og:description" content="Information & Guidance on the PhD Process, Connect with Supervisor and Many"/>
-
-            <!-- favicon -->
-            <link rel="shortcut icon" href="{{asset('web/images/logo.png') }}">
-            <!-- Bootstrap -->
-            <link href="{{ asset('web/css/bootstrap.min.css') }}" rel="stylesheet" type="text/css" />
-            <!-- tobii css -->
-            <link href="{{asset('web/css/tobii.min.css')}}" rel="stylesheet" type="text/css" />
-            <!-- Icons -->
-            <link href="{{asset('web/css/materialdesignicons.min.css')}}" rel="stylesheet" type="text/css" />
-            <link rel="stylesheet" type="text/css" href="{{ asset('web/stylesheets/font-awesome.min.css') }}" />
-            <link rel="stylesheet" href="https://unicons.iconscout.com/release/v3.0.6/css/line.css">
-            <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
-
-            <!-- Slider -->
-            <link rel="stylesheet" href="{{asset('web/css/tiny-slider.css')}}"/>
-            <!-- Main Css -->
-            <link href="{{asset('web/css/style.css')}}" rel="stylesheet" type="text/css" id="theme-opt" />
-            <link href="{{asset('web/css/colors/default.css')}}" rel="stylesheet" id="color-opt">
-            <link rel="preconnect" href="https://fonts.googleapis.com">
-            <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
-            <link href="https://fonts.googleapis.com/css2?family=Oswald:wght@200&family=Quicksand:wght@400;500;600;700&display=swap" rel="stylesheet">
-
-            <link rel="preconnect" href="https://fonts.googleapis.com">
-            <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
-            <link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap" rel="stylesheet">
-            <link rel="preconnect" href="https://fonts.googleapis.com">
-            <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
-            <link href="https://fonts.googleapis.com/css2?family=League+Spartan:wght@700&display=swap" rel="stylesheet">
-            <link rel="preconnect" href="https://fonts.googleapis.com">
-            <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
-            <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300&display=swap" rel="stylesheet">
-            <link rel="preconnect" href="https://fonts.googleapis.com">
-            <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
-            <link href="https://fonts.googleapis.com/css2?family=Montserrat+Alternates&display=swap" rel="stylesheet">
-
-
-            {{-- Ajax Form Submit --}}
-            <link href="{{ asset('css/noty/lib/noty.css') }}" rel="stylesheet" type="text/css">
-            <link rel="stylesheet" href="{{ asset('css/pnotify/pnotify.min.css') }}">
-            <link href="{{ asset('css/noty/lib/themes/sunset.css') }}" rel="stylesheet" type="text/css">
-            <link href="{{ asset('css/flatpickr/dist/flatpickr.min.css') }}" rel="stylesheet" type="text/css">
-            <link href="{{ asset('css/wait-me/waitMe.min.css')}}"  rel="stylesheet" type="text/css">
-            <link rel="stylesheet" href="{{ asset('/css/pretty-checkbox/pretty-checkbox.min.css')  }}">
-       </head>
-       <style>
-
-            body {
-                font-family: 'Quicksand', sans-serif;
-            }
-            h1, h2, h3, h4, h6 {
-                font-family: 'Quicksand', sans-serif;
-            }
-            h5{
-                font-family: 'Quicksand', sans-serif;
-            }
-            .bg-half-170 {
-            padding:0px;
-            }
-            .form-control:focus {
-                box-shadow: 0 0 0 0.25rem #8492a61f !important;
-                border-color: #8492a61f !important;
-            }
-            .btn1{
-                background-color: #141639c4 !important;
-                color:white !important;
-                border-radius: 20px;
-                box-shadow:none !important;
-            }
-            .btn1:hover{
-                background: #fff !important;
-                color: #141639c4 !important;
-                border-radius: 20px;
-                border: 1px solid #141639c4;
-            }
-            .tns-nav button {
-                background: #141639c4 !important;
-            }
-            .tns-nav button.tns-nav-active{
-                background-color: #ffad00 !important;
-            }
-            .bg-left{
-                background-color:#191e38;
-                border:none;
-            }
-            .bg-left .head-line{
-                font-size: 39px !important;
-                font-weight: bold;
-                line-height: 1.2;
-                color:#ffff;
-            }
-            .sub-line1{
-                font-size: 18px !important;
-                font-weight: 400;
-                font-family: poppins !important;
-                color:#ffff !important;
-            }
-            .sub-line2{
-                font-size: 17px !important;
-                font-weight: bold;
-                font-family: poppins !important;
-                color:#ffff !important;
-            }
-            .bg-white{
-                background-color: #72809f33 !important;
-                height: 160px;
-                border: 1px solid #ffff;
-            }
-            .box-head{
-                font-size:15px !important;
-                color:#ffff;
-            }
-            .box-sub{
-                font-size:14px;
-                color:#ffff;
-            }
-            .d-flex{
-                display: grid !important;
-            }
-            .box-white{
-                color: white;
-                background-color: #191e38 !important;
-            }
-            .text-muted{
-                color: #191e38 !important;
-            }
-            .text-muted1{
-                color: #ffffff !important;
-            }
-            .master-link.secondary {
-                padding: 20px;
-                color: #fff;
-                background-color: rgba(235,232,227,.1);
-                clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.1em), calc(100% - 1.1em) 100%, 0 100%);
-            }
-            .master-link.secondary:hover {
-                color: #191e38 !important;
-                background-color: #ffffff;
-                clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.1em), calc(100% - 1.1em) 100%, 0 100%);
-            }
-            .grid_wrap {
-                grid-column-gap: 1.5rem;
-                grid-row-gap: 1.5rem;
-                flex-direction: column;
-                margin-bottom: 1px;
-                display: flex;
-            }
-            .grid_customize {
-                grid-column-gap: 1.5rem;
-                grid-row-gap: 1.5rem;
-                grid-template-columns: .75fr .75fr;
-            }
-            .w-layout-grid {
-                grid-template-rows: auto auto;
-                grid-auto-columns: 1fr;
-                display: grid;
-            }
-            .method {
-                background-color: #ffad00;
-                width: 41%;
-                font-size: 18px !important;
-                color: #191e38;
-                padding: 4px;
-                border-radius: 5px;
-                font-weight: 700;
-                text-align: center;
-            }
-            .method-box{
-                width: 47.8%;
-                background-color: #eee;
-                border-radius: 5px;
-            }
-            .avatar.avatar-small {
-                height: 75px !important;
-                width: 75px !important;
-            }
-            .hero{
-                line-height: 1.1;
-                color: #ffad00;
-                font-size: 5rem !important;
-                font-weight: 500 !important;
-                font-family: 'League Spartan', sans-serif !important;
-            }
-            .sub-hero{
-                color: #ffffff;
-                font-weight: bolder !important;
-                font-size: 35px ;
-            }
-            .line{
-                border-bottom: 2px solid #ffad00;
-                width: 12%;
-                margin-left: 30rem;
-            }
-            /* animation */
-            .anime{
-                display: flex;
-                align-items: center;
-                color:white;
-                justify-content: center;
-            }
-            .wrapper{
-                display: inline-flex;
-            }
-            .wrapper .static-txt{
-                font-size: 36px;
-                font-weight: 600;
-            }
-            .wrapper .dynamic-txts{
-                margin-left: -10px;
-                height: 50px;
-                line-height: 50px;
-                overflow: hidden;
-                margin-top: 3px;
-            }
-            .dynamic-txts li{
-                list-style: none;
-                font-size: 36px;
-                font-weight: 600;
-                color: #ffad00;
-                position: relative;
-                top: 0;
-                animation: slide 6s steps(4) infinite;
-            }
-            .dynamic-txts li span{
-                position: relative;
-            }
-            .dynamic-txts li span::after{
-                content: "";
-                position: absolute;
-                height: 100%;
-                width: 100%;
-                background: #191e38;
-                border-left: 2px solid #ffad00;
-                left: 0;
-                animation: typing 1.5s steps(18) infinite;
-            }
-            @keyframes slide {
-                100%{
-                    top: -200px;
-                }
-            }
-            @keyframes typing {
-                100%{
-                    left: 100%;
-                    margin: 0 -35px 0 35px;
-                }
-            }
-
-       </style>
-       <body>
-
-       <!-- <header id="topnav" style="position: unset !important;">
-            <div class="container-fluid" style="background-color:#191e38;">
-                <div class="col-md-12">
-                    <div class="row">
-                        <div style="border-bottom: 1px solid #eee; display: flex; margin-top: -11px;">
-                            <div class="col-md-9 mb-3">
-                                <a class="logo" href="index.html">
-                                    <h3 class="ms-5" style="font-family:Ubuntu !important; color: white; margin-top: 2rem;">Research Admission</h3>
-                                </a>
-                            </div>
-                            <div class="col-md-3" style="display: flex;">
-                                <p class="mt-5"><a href="" class="master-link secondary"><strong style="font-weight: bolder !important;">Register Your Interest <i class="fa fa-arrow-right fea icon-sm"></i> </strong> </a></p>
-                                <p class="mt-5 ms-3"><a href="" class="master-link secondary"><strong style="font-weight: bolder !important;">Log In <i class="fa fa-arrow-right fea icon-sm"></i> </strong> </a></p>
-                            </div>
-                        </div>
-                    </div>
-                </div>
-            </div>
-        </header> -->
-
-        <section class="cover-user bg-left" style="background-color:#191e38;">
-            <div class="container-fluid px-0">
-                <div class="row g-0" style="justify-content: center;">
-                    <div class="col-md-8 mt-5 pt-5 mb-5">
-                        <div class="card-body mt-4 mb-5" style="padding: 0px; text-align: center !important;">
-                            <span class="hero">Research Admission</span>
-                            <p class="sub-hero">Platform for Supervisors</p>
-                        </div>
-                        <div class="line"></div>
-
-                        <div class="anime mt-4">
-                            <div class="wrapper">
-                                <div class="static-txt">Introducing Research Admission Platform for</div>
-                                <ul class="dynamic-txts">
-                                    <li><span>Supervision</span></li>
-                                    <li><span>Collaborate</span></li>
-                                    <li><span>More Visibility</span></li>
-                                    <li><span>Full Control</span></li>
-                                </ul>
-                            </div>
-                        </div>
-                            <p class="mt-5 text-center" style="color:white; font-weight: bolder !important; font-size: 20px ">Introducing Research Admission Platform for Supervsiors -
-                                <br>a revolutionary solution designed to simplify the proposal <br>submission and review process</p>
-                            <p class="mt-5 mb-4 text-center"><span class="master-link secondary open_modal_page hand" data-title="Register Your Interest" data-url="{{route('modal-get',['name'=>'landing_register_form'])}}"><strong style="font-weight: bolder !important; cursor:pointer; font-size: 17px;">Register Your Interest <i class="fa fa-arrow-right fea icon-sm"></i> </strong> </span></p>
-
-                        </div>
-                    </div>
-
-                    <div class="container-fluid mt-5 pt-3 mb-5 pb-3" style="background-color: white;">
-                        <div class="row g-0 mt-5 mb-5" style="justify-content: center;">
-                            <div class="container">
-                                <div class="col-md-12">
-                                    <div class="row">
-                                        <div class="col-md-6">
-                                            <p class="mt-5 pt-3 mb-4 text-left" style="color: #191e38; font-weight: bolder !important; font-size: 38px;  font-family: 'League Spartan', sans-serif !important; line-height: 1.1;">Discover the hassle-free solution to manage proposals from your doctoral applicants</p>
-                                            <div style="border-bottom: 2px solid #ffad00; width: 25%;"></div>
-                                            <p class="mt-4 mb-4 text-left" style="color: #191e38; font-size: 20px;">As an educator and supervisor, it's clear that you receive a large volume of emails from doctoral candidates seeking your supervision for their research projects. The task of organizing and keeping track of all these emails can be quite daunting.</p>
-                                            <p class="mb-5 pb-3 text-left" style="color: #191e38; font-weight: bolder; font-size: 22px;">We leveraged our extensive 16-years experience working with supervisor and doctoral candidates to create this.</p>
-                                        </div>
-                                        <div class="col-md-5 mt-5 mb-5 ms-5 ps-4">
-                                            <img src="web/images/01.jpg" class="rounded-circle">
-                                        </div>
-                                    </div>
-                                </div>
-                            </div>
-                        </div>
-                    </div>
-
-                    <div class="col-md-12 padding-less mt-5 pt-3 mb-5 pb-3" style="background-color: #191e38;">
-                        <div class="container mt-5">
-                            <div class="row justify-content-center">
-                                <div class="col-12 text-center">
-                                    <div class="section-title mb-4 pb-2">
-                                        <p class="mt-2" style="color:white; font-size: 20px; margin-bottom: 0px;">Working Processes</p>
-                                        <h1 class="mb-3" style="color: #ffad00; font-size: 48px !important; font-weight: bolder !important; font-family: 'League Spartan', sans-serif !important;">How It Works</h1>
-                                        <div style="border-bottom: 2px solid #ffad00; width: 12%; margin-left: 30rem;"></div>
-                                    </div>
-                                </div><!--end col-->
-                            </div><!--end row-->
-
-                            <div class="row justify-content-center">
-                                <div class="col-lg-12 mt-4 mb-4" style="padding: 0px;">
-                                    <div class="row">
-                                            <div class="col-lg-3 col-md-6 col-12 mt-4 pt-2">
-                                                <div class="card" style="border-radius: 24px; width: 235px; height: 250px;">
-                                                    <div class="card-body">
-                                                        <div style="margin-top: -2.6rem;">
-                                                            <h6 class="method" style="margin-left: 3.5rem;">Step 1</h6>
-                                                            <h5 class="card-title text-center mt-4" style="font-size: 18px !important; font-weight: bolder;">Add link in <br> e-mail signature</h5>
-                                                            <p style="font-size: 15px !important;">Add your customized Q-Apply link into your email signature.</p>
-                                                            <div style="margin-left: 13.9rem; margin-top: -4.5rem;">
-                                                                <i class="uil uil-angle-right-b" style="color: white; background-color: #ffad00; padding: 7px 9px; font-size: 17px; border-radius: 36px;"></i>
-                                                            </div>
-                                                        </div>
-                                                    </div>
-                                                </div>
-                                            </div>
-                                            <div class="col-lg-3 col-md-6 col-12 mt-4 pt-2">
-                                                <div class="card" style="border-radius: 24px; width: 235px; height: 250px;">
-                                                    <div class="card-body">
-                                                        <div style="margin-top: -2.6rem;">
-                                                            <h6 class="method" style="margin-left: 3.5rem;">Step 2</h6>
-                                                            <h5 class="card-title text-center mt-4" style="font-size: 18px !important; font-weight: bolder;">Automated invitations</h5>
-                                                            <p style="font-size: 15px !important;">Allow applicants to receive automatic invitations to initiate their process using QApply.</p>
-                                                            <div style="margin-left: 13.9rem; margin-top: -6rem;">
-                                                                <i class="uil uil-angle-right-b" style="color: white; background-color: #ffad00; padding: 7px 9px; font-size: 17px; border-radius: 36px;"></i>
-                                                            </div>
-                                                        </div>
-                                                    </div>
-                                                </div>
-                                            </div>
-                                            <div class="col-lg-3 col-md-6 col-12 mt-4 pt-2">
-                                                <div class="card" style="border-radius: 24px; width: 235px; height: 250px;">
-                                                    <div class="card-body">
-                                                        <div style="margin-top: -2.6rem;">
-                                                            <h6 class="method" style="margin-left: 3.5rem;">Step 3</h6>
-                                                            <h5 class="card-title text-center mt-4" style="font-size: 18px !important; font-weight: bolder;">Begin Accepting Proposals</h5>
-                                                            <p style="font-size: 15px !important;">You receive an email notification whenever an applicant submits a proposal.</p>
-                                                            <div style="margin-left: 13.9rem; margin-top: -5.9rem;">
-                                                                <i class="uil uil-angle-right-b" style="color: white; background-color: #ffad00; padding: 7px 9px; font-size: 17px; border-radius: 36px;"></i>
-                                                            </div>
-                                                        </div>
-                                                    </div>
-                                                </div>
-                                            </div>
-                                            <div class="col-lg-3 col-md-6 col-12 mt-4 pt-2">
-                                                <div class="card" style="border-radius: 24px; width: 235px; height: 250px;">
-                                                    <div class="card-body">
-                                                        <div style="margin-top: -2.6rem;">
-                                                            <h6 class="method" style="margin-left: 3.5rem;">Step 4</h6>
-                                                            <h5 class="card-title text-center mt-4" style="font-size: 18px !important; font-weight: bolder;">Review & Make decision</h5>
-                                                            <p style="font-size: 15px !important;">Please review the proposal and choose "interested" or "rejected."</p>
-                                                        </div>
-                                                    </div>
-                                                </div>
-                                            </div>
-                                        </div><!--end row-->
-                                    </div>
-                                </div><!--end col-->
-                                <p class="mt-3 mb-2 text-center" style="color: #ffad00; font-weight: bolder !important; font-size: 24px">Eliminate the need to keep track of emails</p>
-                                <p class="mb-5 text-center" style="color:white; font-weight: bolder !important; font-size: 16px">Welcome to our platform, where we offer a convenient solution to eliminate the need for manually keeping track of emails from doctoral candidates and their research proposals. Our website provides a streamlined process to manage and organize all the necessary information in one place, saving you time and effort.</p>
-                            </div><!--end container-->
-                        </div>
-                    </div>
-
-                    <div class="container-fluid mt-5 pt-3 mb-5 pb-3" style="background-color: white;">
-                        <div class="row g-0 mt-5 mb-5" style="justify-content: center;">
-                            <div class="container">
-                                <div class="row justify-content-center">
-                                    <div class="col-12 text-center">
-                                        <p class="mt-4" style="color: #191e38; font-size: 20px; margin-bottom: 0px; font-weight: 600;">Users Review</p>
-                                        <h1 class="mb-3" style="color: #191e38; font-size: 48px !important; font-weight: bolder !important; font-family: 'League Spartan', sans-serif !important;">What Our User Says</h1>
-                                        <div style="border-bottom: 2px solid #ffad00; width: 12%; margin-left: 30rem;"></div>
-                                    </div><!--end col-->
-                                </div><!--end row-->
-                                <div class="row justify-content-center">
-                                <div class="col-lg-12">
-                                    <div class="tiny-three-item">
-                                        <div class="tiny-slide">
-                                            <div class="d-flex client-testi m-2">
-                                                <div class="flex-1 position-relative">
-                                                    <div class="card-body p-3 mt-3 mb-3" style="background: #191e38; color: white; border: none; border-radius: 13px 13px 13px 0px !important;">
-                                                        <div class="mt-2 text-center">
-                                                            <p class="mt-3 text-left" style="font-family: Nunito, sans-serif;">" Lorem ipsum dolor sit amet consectetur adipisicing elit. Provident accusamus omnis voluptatibus asperiores autem explicabo! Reiciendis in consequatur consequuntur doloribus provident, ducimus fugiat excepturi exercitationem praesentium voluptatem eaque quisquam eius! "</p>
-                                                        </div>
-                                                    </div>
-                                                    <div class="mt-2" style="display: flex;">
-                                                        <img src="web/images/01.jpg" class="text-center avatar avatar-small client-image shadow" alt="" style="border-radius: 46px !important;">
-                                                        <div class="div">
-                                                            <h5 class="card-title text-right" style="margin-bottom: 0px; font-weight: bolder; font-size: 16px !important;">MARK SHIM</h5>
-                                                            <p style="margin-bottom: 10px !important;">Head of Marketing,<br> research.com</p>
-                                                        </div>
-                                                    </div>
-                                                </div>
-                                            </div>
-                                        </div>
-
-                                        <div class="tiny-slide">
-                                            <div class="d-flex client-testi m-2">
-                                                <div class="flex-1 position-relative">
-                                                    <div class="card-body p-3 mt-3 mb-3" style="background: #191e38; color: white; border: none; border-radius: 13px 13px 13px 0px !important;">
-                                                        <div class="mt-2 text-center">
-                                                            <p class="mt-3">"Lorem ipsum dolor sit amet consectetur adipisicing elit. Provident accusamus omnis voluptatibus asperiores autem explicabo! Reiciendis in consequatur consequuntur doloribus provident, ducimus fugiat excepturi exercitationem praesentium voluptatem eaque quisquam eius! "</p>
-                                                        </div>
-                                                    </div>
-                                                    <div class="mt-2" style="display: flex;">
-                                                        <img src="web/images/01.jpg" class="text-center avatar avatar-small client-image shadow" alt="" style="border-radius: 46px !important;">
-                                                        <div class="div">
-                                                            <h5 class="card-title text-right" style="margin-bottom: 0px; font-weight: bolder; font-size: 16px !important;">MARK SHIM</h5>
-                                                            <p style="margin-bottom: 10px !important;">Head of Marketing,<br> research.com</p>
-                                                        </div>
-                                                    </div>
-                                                </div>
-                                            </div>
-                                        </div>
-
-                                        <div class="tiny-slide">
-                                            <div class="d-flex client-testi m-2">
-                                                <div class="flex-1 position-relative">
-                                                    <div class="card-body p-3 mt-3 mb-3" style="background: #191e38; color: white; border: none; border-radius: 13px 13px 13px 0px !important;">
-                                                        <div class="mt-2 text-center">
-                                                            <p class="mt-3">"Lorem ipsum dolor sit amet consectetur adipisicing elit. Provident accusamus omnis voluptatibus asperiores autem explicabo! Reiciendis in consequatur consequuntur doloribus provident, ducimus fugiat excepturi exercitationem praesentium voluptatem eaque quisquam eius! "</p>
-                                                        </div>
-                                                    </div>
-                                                    <div class="mt-2" style="display: flex;">
-                                                        <img src="web/images/01.jpg" class="text-center avatar avatar-small client-image shadow" alt="" style="border-radius: 46px !important;">
-                                                        <div class="div">
-                                                            <h5 class="card-title text-right" style="margin-bottom: 0px; font-weight: bolder; font-size: 16px !important;">MARK SHIM</h5>
-                                                            <p style="margin-bottom: 10px !important;">Head of Marketing,<br> research.com</p>
-                                                        </div>
-                                                    </div>
-                                                </div>
-                                            </div>
-                                        </div>
-
-                                        <div class="tiny-slide">
-                                            <div class="d-flex client-testi m-2">
-                                                <div class="flex-1 position-relative">
-                                                    <div class="card-body p-3 mt-3 mb-3" style="background: #191e38; color: white; border: none; border-radius: 13px 13px 13px 0px !important;">
-                                                        <div class="mt-2 text-center">
-                                                            <p class="mt-3">"Lorem ipsum dolor sit amet consectetur adipisicing elit. Provident accusamus omnis voluptatibus asperiores autem explicabo! Reiciendis in consequatur consequuntur doloribus provident, ducimus fugiat excepturi exercitationem praesentium voluptatem eaque quisquam eius! "</p>
-                                                        </div>
-                                                    </div>
-                                                    <div class="mt-2" style="display: flex;">
-                                                        <img src="web/images/01.jpg" class="text-center avatar avatar-small client-image shadow" alt="" style="border-radius: 46px !important;">
-                                                        <div class="div">
-                                                            <h5 class="card-title text-right" style="margin-bottom: 0px; font-weight: bolder; font-size: 16px !important;">MARK SHIM</h5>
-                                                            <p style="margin-bottom: 10px !important;">Head of Marketing,<br> research.com</p>
-                                                        </div>
-                                                    </div>
-                                                </div>
-                                            </div>
-                                        </div>
-
-                                        <div class="tiny-slide">
-                                            <div class="d-flex client-testi m-2">
-                                                <div class="flex-1 position-relative">
-                                                    <div class="card-body p-3 mt-3 mb-3" style="background: #191e38; color: white; border: none; border-radius: 13px 13px 13px 0px !important;">
-                                                        <div class="mt-2 text-center">
-                                                            <p class="mt-3">"Lorem ipsum dolor sit amet consectetur adipisicing elit. Provident accusamus omnis voluptatibus asperiores autem explicabo! Reiciendis in consequatur consequuntur doloribus provident, ducimus fugiat excepturi exercitationem praesentium voluptatem eaque quisquam eius! "</p>
-                                                        </div>
-                                                    </div>
-                                                    <div class="mt-2" style="display: flex;">
-                                                        <img src="web/images/01.jpg" class="text-center avatar avatar-small client-image shadow" alt="" style="border-radius: 46px !important;">
-                                                        <div class="div">
-                                                            <h5 class="card-title text-right" style="margin-bottom: 0px; font-weight: bolder; font-size: 16px !important;">MARK SHIM</h5>
-                                                            <p style="margin-bottom: 10px !important;">Head of Marketing,<br> research.com</p>
-                                                        </div>
-                                                    </div>
-                                                </div>
-                                            </div>
-                                        </div>
-
-                                        <div class="tiny-slide">
-                                            <div class="d-flex client-testi m-2">
-                                                <div class="flex-1 position-relative">
-                                                    <div class="card-body p-3 mt-3 mb-3" style="background: #191e38; color: white; border: none; border-radius: 13px 13px 13px 0px !important;">
-                                                        <div class="mt-2 text-center">
-                                                            <p class="mt-3">"Lorem ipsum dolor sit amet consectetur adipisicing elit. Provident accusamus omnis voluptatibus asperiores autem explicabo! Reiciendis in consequatur consequuntur doloribus provident, ducimus fugiat excepturi exercitationem praesentium voluptatem eaque quisquam eius! "</p>
-                                                        </div>
-                                                    </div>
-                                                    <div class="mt-2" style="display: flex;">
-                                                        <img src="web/images/01.jpg" class="text-center avatar avatar-small client-image shadow" alt="" style="border-radius: 46px !important;">
-                                                        <div class="div">
-                                                            <h5 class="card-title text-right" style="margin-bottom: 0px; font-weight: bolder; font-size: 16px !important;">MARK SHIM</h5>
-                                                            <p style="margin-bottom: 10px !important;">Head of Marketing,<br> research.com</p>
-                                                        </div>
-                                                    </div>
-                                                </div>
-                                            </div>
-                                        </div>
-                                    </div>
-                                </div>
-                            </div>
-                            <!-- <div class="col-lg-4 col-md-6 col-12 mt-4 pt-2">
-                                <div class="card" style="border-radius: 24px; width: 322px; height: 305px;">
-                                    <div class="card-body" style="background: #191e38; color: white; border-radius: 20px;">
-                                        <div class="mt-2 text-center">
-                                            <img src="web/images/01.jpg" class="avatar avatar-small client-image shadow" alt="" style="margin-top: -8rem; border-radius: 46px !important;">
-                                            <h5 class="card-title text-center" style="font-weight: bolder;">MARK SHIM</h5>
-                                            <p style="margin-bottom: 10px !important;">Head of Marketing,<br> research.com</p>
-                                            <div style="border-bottom: 2px solid #ffad00; width: 57%; margin-left: 3.5rem;"></div>
-                                            <p class="mt-3">"Lorem, ipsum dolor sit amet consectetur adipisicing elit. In aut sapiente deleniti! Natus, id et."</p>
-                                        </div>
-                                    </div>
-                                </div>
-                            </div> -->
-
-                        </div>
-                    </div>
-                </div>
-
-                    <div class="container-fluid mt-5 pt-3" style="background-color: #191e38;">
-                        <div class="row g-0 mt-5" style="justify-content: center;">
-                            <div class="container">
-                                <div class="col-md-12 mb-5">
-                                    <div class="section-title mb-4 pb-2 text-center">
-                                        <p class="mt-2" style="color:white; font-size: 20px; margin-bottom: 0px;">Why this platform is</p>
-                                        <h1 class="mb-3" style="color: #ffad00; font-size: 48px !important; font-weight: bolder !important; font-family: 'League Spartan', sans-serif !important;">Advantageous For You</h1>
-                                        <div style="border-bottom: 2px solid #ffad00; width: 12%; margin-left: 30rem;"></div>
-                                    </div>
-                                    <div class="row">
-                                        <div class="col-lg-4 col-md-6 col-12 mt-4 pt-2" style="border-right: 1px solid #ffffff;">
-                                            <div class="card-body">
-                                                <div class="mt-2">
-                                                    <h1 style="color: #ffad00; font-size: 28px !important; text-align: left;  font-family: 'League Spartan', sans-serif !important; line-height: 1.1;">Supervision <br>Opportunities</h1>
-                                                    <h5 class="text-left mt-4" style="color: white;">Be part of our community and engage with candidates actively searching for supervisors.</h5>
-                                                </div>
-                                            </div>
-                                        </div><!--end col-->
-
-                                        <div class="col-lg-4 col-md-6 col-12 mt-4 pt-2" style="border-right: 1px solid #ffffff;">
-                                            <div class="card-body">
-                                                <div class="mt-2">
-                                                    <h1 style="color: #ffad00; font-size: 28px !important; text-align: left; font-family: 'League Spartan', sans-serif !important; line-height: 1.1;">Collaborate with <br>Potential Co-author</h1>
-                                                    <h5 class="text-left mt-4" style="color: white;">Explore collaborative opportunities with potential co-authors in your field, making it simpler than ever with just a few clicks.</h5>
-                                                </div>
-                                            </div>
-                                        </div><!--end col-->
-
-                                        <div class="col-lg-4 col-md-6 col-12 mt-4 pt-2">
-                                            <div class="card-body">
-                                                <div class="mt-2">
-                                                    <h1 style="color: #ffad00; font-size: 28px !important; text-align: left; font-family: 'League Spartan', sans-serif !important; line-height: 1.1;">More Visibility,<br>Be Found With Ease</h1>
-                                                    <h5 class="text-left mt-4" style="color: white;">Showcase your Research Interests and Stand Out to Applicants</h5>
-                                                </div>
-                                            </div>
-                                        </div><!--end col-->
-                                    </div>
-                                    <div class="row">
-                                        <div class="col-lg-4 col-md-6 col-12 pt-2 mb-5" style="border-top: 1px solid #ffffff; border-right: 1px solid #ffffff;">
-                                            <div class="card-body">
-                                                <div class="mt-2">
-                                                    <h1 style="color: #ffad00; font-size: 28px !important; text-align: left;  font-family: 'League Spartan', sans-serif !important; line-height: 1.1;">Full Control <br>No Junk Application</h1>
-                                                    <h5 class="text-left mt-4" style="color: white;">Make it easy for applicants to know your supervision availibility through a simple button.</h5>
-                                                </div>
-                                            </div>
-                                        </div><!--end col-->
-
-                                        <div class="col-lg-4 col-md-6 col-12 pt-2 mb-5" style="border-top: 1px solid #ffffff; border-right: 1px solid #ffffff;">
-                                            <div class="card-body">
-                                                <div class="mt-2">
-                                                    <h1 style="color: #ffad00; font-size: 28px !important; text-align: left; font-family: 'League Spartan', sans-serif !important; line-height: 1.1;">Centralized <br>Proposal Management</h1>
-                                                    <h5 class="text-left mt-4" style="color: white;">A centralized platform, removing the hassle of tracking multiple emails and documents.</h5>
-                                                </div>
-                                            </div>
-                                        </div><!--end col-->
-
-                                        <div class="col-lg-4 col-md-6 col-12 pt-2 mb-5" style="border-top: 1px solid #ffffff;">
-                                            <div class="card-body">
-                                                <div class="mt-2">
-                                                    <h1 style="color: #ffad00; font-size: 28px !important; text-align: left; font-family: 'League Spartan', sans-serif !important; line-height: 1.1;">Real-Time <br>Notifications</h1>
-                                                    <h5 class="text-left mt-4" style="color: white;">Stay notified via email as soon as proposal is received, while ensuring timely updates to applicants abount your interest in their proposals in real-time</h5>
-                                                </div>
-                                            </div>
-                                        </div><!--end col-->
-                                    </div>
-                                </div>
-                            </div>
-                        </div>
-                    </div>
-                </div>
-                    <!-- <div class="col-lg-7 cover-my-30 ms-5 ps-5">
-                        <div class="row">
-                            <div class="col-12">
-                                <div class="border-0" style="z-index: 1;">
-                                    <div class="card-body mt-5" style="padding: 0px;">
-                                        <p style="color:white; font-weight: 100 !important;"> Our free tool enables students to submit their proposals effortlessly while providing you with email notifications for each new submission. The days of searching through cluttered inboxes and struggling to keep track of proposals under review are over. With our user-friendly interface, you can efficiently manage and organize all your doctoral program proposals in one centralized location.</p>
-
-                                        <p class="mt-4" style="color: white;">Our tool ensures that you never miss a proposal submission or waste time manually entering data. With all the necessary information at your fingertips, you can review proposals quickly and notify the decision to the applicants instantly.</p>
-                                        <p class="mt-4" style="color: white;">Our tool is entirely free, which means you can start using it immediately without incurring additional costs. By using our proposal management tool, you can save valuable time and feel more organized.</p>
-                                        <p class="mt-4" style="color: white;"><Strong style="font-weight: bolder !important; color: white;"> Do not let the chaos of proposal management overwhelm you any longer. </strong> Sign up for our free tool today and experience the stress-free solution you have been searching for.</p>
-                                        <div class="div">
-
-                                        </div>
-                                    </div>
-                                </div>
-                            </div>
-                        </div>
-                    </div>        -->
-                </div><!--end row-->
-            </div><!--end container fluid-->
-        </section><!--end section-->
-        <footer class="footer footer-bar" style="background-color: #191e38; display: block; border-top: 1px solid #eee;">
-            <div class="container-fluid text-center">
-                <div class="row align-items-center">
-                    <div class="col-md-6">
-                        <div style="text-align: left;">
-                        <p class="mb-0" style="color:white; margin-left: -2px; padding: 14px; font-size: 14px !important;">We aim to simplify research application for students and streamline management for supervisors with our comprehensive platform at Research Admission.</p>
-                        </div>
-                    </div><!--end col-->
-                        <div class="col-md-6">
-                            <div style="text-align: right;">
-                                <p class="mb-0" style="color:white; margin-left: -2px; padding: 14px;">Copyright © <script>document.write(new Date().getFullYear())</script>
-                                Research Admission</p>
-                            </div>
-                        </div>
-                    </div><!--end col-->
-                </div><!--end row-->
-            </div><!--end container-->
-        </footer>
-        <!-- javascript -->
-        <script src="{{asset('web/js/bootstrap.bundle.min.js')}}"></script>
-        <!-- tobii js -->
-        <script src="{{asset('web/js/tobii.min.js')}}"></script>
-        <!-- SLIDER -->
-        <script src="{{asset('web/js/tiny-slider.js')}}"></script>
-        <!-- Icons -->
-        <script src="{{asset('web/js/feather.min.js')}}"></script>
-        <!-- Main Js -->
-        <script src="{{asset('web/js/plugins.init.js')}}"></script>
-        <script src="{{asset('web/js/app.js')}}"></script>
-
-        <script src="{{ asset('css/jquery.min.js') }}"></script>
-        <script src="{{ asset('css/jquery-form/dist/jquery.form.min.js') }}"></script>
-        <script src="{{ asset('css/pnotify/pnotify.js') }}"></script>
-        <script src="{{ asset('css/noty/lib/noty.min.js') }}"></script>
-        <script src="{{ asset('css/flatpickr/dist/flatpickr.min.js') }}"></script>
-        <script src="{{ asset('css/wait-me/waitMe.min.js')}}"></script>
-
-
-        @include('supervisor.layouts.modal')
-        <script>
-            function fetch_sub_content(selector, url, args=null){
-
-                var config={
-                spinner: true
-                }
-
-                if(typeof args=='object'){
-                config=Object.assign(config, args);
-                }
-
-                if(config.spinner){
-
-                $(selector).waitMe({
-                    effect: 'facebook',
-                    text: 'Please! Wait ...'
-                });
-
-                }
-
-                $(selector).load(url, null, function(){
-                $(selector).waitMe('hide');
-                if(typeof args=='function') args();
-                });
-
-            }
-
-            function wait_me(selector, config=null){
-
-                if(config){
-
-                    selector.waitMe(config);
-
-                }else{
-
-                    selector.waitMe({
-                        effect: 'facebook',
-                        //color: '#000',
-                        text: 'Please! Wait ...'
-                    });
-                }
-            }
-
-
-            function pop_up_msg(msg='No message specified', type='success', callback=null){
-                new Noty({
-                theme:'sunset',
-                text: msg,
-                type: type,
-                timeout:1500,
-                callbacks:{
-                    afterClose: callback
-                }
-                }).show();
-            }
-
-            function err_msg(err){
-
-                var msg="Request failed to process, try again later.";
-
-                if(err.responseJSON && err.responseJSON.msg){
-                msg=err.responseJSON.msg;
-                }
-
-                return msg;
-
-            }
-
-            function ajax_form(form, cllback=null, config={spinner: true}){
-
-                $('.btn-submit').prop('disabled', true);
-                var redirect=$(form).data('redirect');
-
-                if(typeof config=='object'){
-
-                if(config.spinner) wait_me($(form));
-
-                }
-
-                $(form).ajaxSubmit({
-                success:function(res){
-
-                    wait_me($(form), 'hide');
-
-                    if(res.msg){
-
-                    pop_up_msg(res.msg, 'success', function(){
-
-                        $('.btn-submit').prop('disabled', false);
-
-                        if(redirect) window.location.replace(redirect);
-                        else if(typeof cllback=='function'){
-                        cllback(form, res);
-                        }
-
-                    });
-
-                    }
-
-                    //$.notify(res.msg, 'success');
-                },
-                error:function(res){
-
-                    wait_me($(form), 'hide');
-
-                    var msg="Request failed to process, try again later.";
-
-                    if(res.responseJSON && res.responseJSON.msg){
-                    msg=res.responseJSON.msg;
-                    }
-
-                    pop_up_msg(msg, 'error');
-                    $('.btn-submit').prop('disabled', false);
-
-                }
-
-                });
-
-            } //End of ajax form definition
-
-            </script>
-        </body>
-  </html>

+ 0 - 516
resources/views/landing.blade - Copy.php

@@ -1,516 +0,0 @@
-<!DOCTYPE html>
-    <html lang="en">
-        <head>
-            <meta charset="utf-8" />
-            <title>Supervisor's Login - Research Admission</title>
-            <meta name="viewport" content="width=device-width, initial-scale=1.0">
-            <meta name="description" content="Information & Guidance on the PhD Process, Connect with Supervisor and Many" />
-            <meta name="keywords" content="" />
-
-            <!-- facebook tags -->
-            <meta property="og:url" content="http://www.facebook.com/researchadmission"/>
-            <meta property="og:type" content="website"/>
-            <meta property="og:title" content="Research Admission"/>
-            <meta property="og:description" content="Information & Guidance on the PhD Process, Connect with Supervisor and Many"/>
-            <!-- Linkedin tags -->
-            <meta property="og:url" content="https://www.linkedin.com/company/researchadmission"/>
-            <meta property="og:type" content="website"/>
-            <meta property="og:title" content="Research Admission"/>
-            <meta property="og:description" content="Information & Guidance on the PhD Process, Connect with Supervisor and Many"/>
-
-            <!-- favicon -->
-            <link rel="shortcut icon" href="{{asset('web/images/logo.png') }}">
-            <!-- Bootstrap -->
-            <link href="{{ asset('web/css/bootstrap.min.css') }}" rel="stylesheet" type="text/css" />
-            <!-- tobii css -->
-            <link href="{{asset('web/css/tobii.min.css')}}" rel="stylesheet" type="text/css" />
-            <!-- Icons -->
-            <link href="{{asset('web/css/materialdesignicons.min.css')}}" rel="stylesheet" type="text/css" />
-            <link rel="stylesheet" type="text/css" href="{{ asset('web/stylesheets/font-awesome.min.css') }}" />
-            <link rel="stylesheet" href="https://unicons.iconscout.com/release/v3.0.6/css/line.css">
-            <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
-
-            <!-- Slider -->
-            <link rel="stylesheet" href="{{asset('web/css/tiny-slider.css')}}"/>
-            <!-- Main Css -->
-            <link href="{{asset('web/css/style.css')}}" rel="stylesheet" type="text/css" id="theme-opt" />
-            <link href="{{asset('web/css/colors/default.css')}}" rel="stylesheet" id="color-opt">
-            <link rel="preconnect" href="https://fonts.googleapis.com">
-            <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
-            <link href="https://fonts.googleapis.com/css2?family=Oswald:wght@200&family=Quicksand:wght@400;500;600;700&display=swap" rel="stylesheet">
-
-            <link rel="preconnect" href="https://fonts.googleapis.com">
-            <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
-            <link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap" rel="stylesheet">
-            <link rel="preconnect" href="https://fonts.googleapis.com">
-            <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
-            <link href="https://fonts.googleapis.com/css2?family=League+Spartan:wght@700&display=swap" rel="stylesheet">
-            <link rel="preconnect" href="https://fonts.googleapis.com">
-            <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
-            <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300&display=swap" rel="stylesheet">
-            <link rel="preconnect" href="https://fonts.googleapis.com">
-            <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
-            <link href="https://fonts.googleapis.com/css2?family=Montserrat+Alternates&display=swap" rel="stylesheet">
-             
-            
-            {{-- Ajax Form Submit --}}
-            <link href="{{ asset('css/noty/lib/noty.css') }}" rel="stylesheet" type="text/css">
-            <link rel="stylesheet" href="{{ asset('css/pnotify/pnotify.min.css') }}">
-            <link href="{{ asset('css/noty/lib/themes/sunset.css') }}" rel="stylesheet" type="text/css">
-            <link href="{{ asset('css/flatpickr/dist/flatpickr.min.css') }}" rel="stylesheet" type="text/css">
-            <link href="{{ asset('css/wait-me/waitMe.min.css')}}"  rel="stylesheet" type="text/css"> 
-            <link rel="stylesheet" href="{{ asset('/css/pretty-checkbox/pretty-checkbox.min.css')  }}">
-       </head>
-       <style>
-
-            body {
-                font-family: 'Poppins', sans-serif;
-                font-family: 'Poppins', sans-serif;
-            }
-            h1, h2, h3, h4, h6 {
-                font-family: 'Poppins', sans-serif;
-            }
-            h5{
-                font-family: 'Montserrat Alternates', sans-serif !important;
-            }
-            .bg-half-170 {
-            padding:0px;
-            }
-            .form-control:focus {
-                box-shadow: 0 0 0 0.25rem #8492a61f !important;
-                border-color: #8492a61f !important;
-            }
-            .btn1{
-                background-color: #141639c4 !important;
-                color:white !important;
-                border-radius: 20px;
-                box-shadow:none !important;
-            }
-            .btn1:hover{
-                background: #fff !important;
-                color: #141639c4 !important;
-                border-radius: 20px;
-                border: 1px solid #141639c4;
-            }
-            .tns-nav button {
-                background: #141639c4 !important;
-            }
-            .tns-nav button.tns-nav-active{
-                background-color: #ffff !important;
-            }
-            .bg-left{
-                background-color:#191e38;
-                border:none;
-            }
-            .bg-left .head-line{
-                font-size: 39px !important;
-                font-weight: bold;
-                line-height: 1.2;
-                color:#ffff;
-            }
-            .sub-line1{
-                font-size: 18px !important;
-                font-weight: 400;
-                font-family: poppins !important;
-                color:#ffff !important;
-            }
-            .sub-line2{
-                font-size: 17px !important;
-                font-weight: bold;
-                font-family: poppins !important;
-                color:#ffff !important;
-            }
-            .bg-white{
-                background-color: #72809f33 !important;
-                height: 160px;
-                border: 1px solid #ffff;
-            }
-            .box-head{
-                font-size:15px !important;
-                color:#ffff;
-            }
-            .box-sub{
-                font-size:14px;
-                color:#ffff;
-            }
-            .d-flex{
-                display: grid !important;
-            }
-            .box-white{
-                color: white;
-                background-color: #191e38 !important;
-            }
-            .text-muted{
-                color: #191e38 !important;
-            }
-            .text-muted1{
-                color: #ffffff !important;
-            }
-            .master-link.secondary {
-                padding: 12px;
-                color: #fff;
-                background-color: rgba(235,232,227,.1);
-                clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.1em), calc(100% - 1.1em) 100%, 0 100%);
-            }
-            .master-link.secondary:hover {
-                color: #191e38 !important;
-                background-color: #ffffff;
-                clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.1em), calc(100% - 1.1em) 100%, 0 100%);
-            }
-            .grid_wrap {
-                grid-column-gap: 1.5rem;
-                grid-row-gap: 1.5rem;
-                flex-direction: column;
-                margin-bottom: 1px;
-                display: flex;
-            }
-            .grid_customize {
-                grid-column-gap: 1.5rem;
-                grid-row-gap: 1.5rem;
-                grid-template-columns: .75fr .75fr;
-            }
-            .w-layout-grid {
-                grid-template-rows: auto auto;
-                grid-auto-columns: 1fr;
-                display: grid;
-            }
-       </style>
-       <body>
-        
-       <header id="topnav" style="position: unset !important;">
-            <div class="container-fluid" style="background-color:#191e38;">
-                <div class="col-md-12">
-                    <div class="row"> 
-                        <div style="border-bottom: 1px solid #eee; display: flex; margin-top: -11px;">
-                            <div class="col-md-9 mb-3">
-                                <a class="logo" href="index.html">
-                                    <h3 class="ms-5" style="font-family:Ubuntu !important; color: white; margin-top: 2rem;">Research Admission</h3>
-                                </a>
-                            </div>
-                            <div class="col-md-3" style="display: flex;">
-                                <p class="mt-5"><a href="" class="master-link secondary"><strong style="font-weight: bolder !important;">Register Your Interest <i class="fa fa-arrow-right fea icon-sm"></i> </strong> </a></p>    
-                                <p class="mt-5 ms-3"><a href="" class="master-link secondary"><strong style="font-weight: bolder !important;">Log In <i class="fa fa-arrow-right fea icon-sm"></i> </strong> </a></p>    
-                            </div>
-                        </div>
-                    </div>
-                </div>
-            </div>
-        </header>
-
-        <section class="cover-user bg-left" style="background-color:#191e38;">
-            <div class="container-fluid px-0">
-                <div class="row g-0" style="justify-content: center;">
-                    <div class="col-md-8 mt-5 pt-5 mb-5">
-                        <div class="card-body mt-4 mb-4" style="padding: 0px; text-align: center !important;">
-                            <span style="line-height: 1.1; color: #ffbd59; font-size: 48px !important; font-weight: 500 !important; font-family: 'League Spartan', sans-serif !important;">Discover the hassle-free solution to manage proposals from your doctoral applicants</span>
-                            <p class="mt-5" style="color:white; font-weight: bolder !important; font-size:14px;">Introducing our Doctoral Proposal management tool - a revolutionary solution designed to simplify the proposal submission and review process. As we understand, managing numerous proposals from doctoral applicants can be a daunting task, which is why we have created a hassle-free solution to streamline the process.</p> 
-                            <div style="justify-content: center;">
-                                <p class="mt-5"><a href="" class="master-link secondary"><strong style="font-weight: bolder !important;">Register Your Interest <i class="fa fa-arrow-right fea icon-sm"></i> </strong> </a></p>    
-                            </div>
-                            <div class="mt-5" style="display: flex; justify-content: center;">
-                                <i class="fa fa-home mt-1" style="color: white; font-size: 11px;"></i><span class="ms-2" style="color: white; font-size: 13px;">Centralized Proposal Management</span>
-                                <i class="fa fa-bell mt-1 ms-4" style="color: white; font-size: 11px;"></i><span class="ms-2" style="color: white; font-size: 13px;">Real-time Notifications</span>
-                                <i class="uil uil-layer-group ms-4" style="color: white; font-size: 12px;"></i><span class="ms-2" style="color: white; font-size: 13px;">Add your Feedback to Proposals</span>
-                            </div>
-                        </div>
-                    </div>
-                   
-                    <div class="container-fluid mt-5" style="background-color: white;">
-                        <div class="row g-0 mt-5 mb-5" style="justify-content: center;">
-                            <div class="col-md-8">
-                                <div class="row justify-content-center">
-                                    <div class="col-12 text-center">
-                                        <div class="section-title mb-4 pb-2">
-                                            <h1 style="line-height: 1.1; color: #191e38; font-size: 48px !important; font-weight: 500 !important; font-family: 'League Spartan', sans-serif !important;">Eliminate the need </br>to keep track of emails</h1>
-                                            <p class="mt-4" style="color: #191e38; font-weight: bolder !important;">As an educator and supervisor, it's clear that you receive a large volume of emails from doctoral candidates seeking your supervision for their research projects. The task of organizing and keeping track of all these emails can be quite daunting.</p> 
-                                        </div>
-                                    </div><!--end col-->
-                                </div><!--end row-->
-
-                                <div class="card-body">
-                                    <div class="grid_wrap">
-                                        <div class="w-layout-grid grid_customize ">
-                                            <div class="flex-1 content p-3 rounded box-white position-relative">
-                                                <h6 style="color: #ffbd59; font-weight: bolder !important;">Through Research Admission Platform </h6>
-                                                <p class="text-muted1 mt-2">3 Ways you can receive proposals from doctoral candidates</p>
-                                            </div>
-                                            <div class="flex-1 content p-3 rounded box-white position-relative">
-                                                <h6 style="color: #ffbd59; font-weight: bolder !important;">OPTION 1 </h6>
-                                                <p class="text-muted1 mt-2">Provide your <span style="color:  #ffbd59;">ARN (Application Reference Number)</span> to the student and ask them to submit their proposal through Research Admission Platform using your reference when they apply.</p>
-                                            </div>
-                                            <div class="flex-1 content p-3 rounded box-white position-relative">
-                                                <h6 style="color: #ffbd59; font-weight: bolder !important;">OPTION 2 </h6>
-                                                <p class="text-muted1 mt-2">Log in to your account, open Invite and add the student's name and email address, <span style="color:  #ffbd59;">send them an invitation.</span> This will automatically tag their application under your account when they apply.*</p>
-                                            </div>
-                                            <div class="flex-1 content p-3 rounded box-white position-relative">
-                                                <h6 style="color: #ffbd59; font-weight: bolder !important;">OPTION 3 </h6>
-                                                <p class="text-muted1 mt-2">Share the <span style="color:  #ffbd59;">Q Apply link</span> with the student and instruct them to fill out the form with their name and email. An invitation email will be sent to them, and then they can proceed with option 2.*</p>
-                                            </div>
-                                        </div>
-                                    </div>
-                                </div>
-                            </div>
-                        </div>
-                    </div>
-
-                    <div class="col-md-8 padding-less ms-5 ps-2 mt-5 mb-5">
-                        <div class="container mt-5">
-                            <div class="row justify-content-center">
-                                <div class="col-12 text-center">
-                                    <div class="section-title mb-4 pb-2">
-                                        <h1 style="color: #ebe8e3; font-size: 40px !important; font-weight: 500 !important;">Efficient and Effective: Doctoral Application Process Streamlined with Innovative Tool</h1>
-                                        <p class="mt-4" style="color:white; font-weight: bolder !important;">This tool has already been adopted by numerous faculties around the world, and its effectiveness in simplifying the doctoral application process has been established through empirical evidence.</p>
-                                    </div>
-                                </div><!--end col-->
-                            </div><!--end row-->
-
-                            <div class="row justify-content-center">
-                                <div class="col-lg-12 mt-4" style="padding: 0px;">
-                                    <div class="tiny-two-item">
-                                        <div class="tiny-slide">
-                                            <div class="d-flex m-2">
-                                                <div class="flex-1 content p-3 shadow rounded box-white position-relative" style="border: 1px solid #eee !important;">
-                                                    <img src="web/images/01.jpg" class="avatar avatar-small client-image shadow" alt="" style="border-radius: 35px !important;">
-                                                    <p class="text-muted1 mt-2">" It seems that only fragments of the original text remain in the Lorem Ipsum texts used today. "</p>
-                                                    <h6 style="color: #e0cfb5;">- Thomas Israel <small class="text-muted1">C.E.O</small></h6>
-                                                </div>
-                                            </div>
-                                        </div>
-                                        
-                                        <div class="tiny-slide">
-                                            <div class="d-flex m-2"> 
-                                                <div class="flex-1 content p-3 shadow rounded box-white position-relative" style="border: 1px solid #eee !important;">
-                                                    <img src="web/images/01.jpg" class="avatar avatar-small client-image shadow" alt="" style="border-radius: 35px !important;">
-                                                    <p class="text-muted1 mt-2">" One disadvantage of Lorum Ipsum is that in Latin certain letters appear more frequently than others. "</p>
-                                                    <h6 style="color: #e0cfb5;">- Barbara McIntosh <small class="text-muted1">M.D</small></h6>
-                                                </div>
-                                            </div>
-                                        </div>
-
-                                        <div class="tiny-slide">
-                                            <div class="d-flex m-2">
-                                                <div class="flex-1 content p-3 shadow rounded box-white position-relative" style="border: 1px solid #eee !important;">
-                                                    <img src="web/images/01.jpg" class="avatar avatar-small client-image shadow" alt="" style="border-radius: 35px !important;">
-                                                    <p class="text-muted1 mt-2">" The most well-known dummy text is the 'Lorem Ipsum', which is said to have originated in the 16th century. "</p>
-                                                    <h6 style="color: #e0cfb5;">- Carl Oliver <small class="text-muted1">P.A</small></h6>
-                                                </div>
-                                            </div>
-                                        </div>
-
-                                        <div class="tiny-slide">
-                                            <div class="d-flex m-2">
-                                                <div class="flex-1 content p-3 shadow rounded box-white position-relative" style="border: 1px solid #eee !important;">
-                                                    <img src="web/images/01.jpg" class="avatar avatar-small client-image shadow" alt="" style="border-radius: 35px !important;">
-                                                    <p class="text-muted1 mt-2">" According to most sources, Lorum Ipsum can be traced back to a text composed by Cicero. "</p>
-                                                    <h6 style="color: #e0cfb5;">- Christa Smith <small class="text-muted1">Manager</small></h6>
-                                                </div>
-                                            </div>
-                                        </div>
-                                    </div>
-                                </div><!--end col-->
-                            </div><!--end row-->
-                        </div><!--end container-->
-                    </div>
-                    
-                    <div class="container-fluid mt-5" style="background-color: #eee;">
-                        <div class="row g-0 mt-5 mb-5" style="justify-content: center;">
-                            <div class="col-md-8">
-                                <div class="card-body">
-                                    <div class="flex-1 content p-5 shadow rounded box-white position-relative">
-                                    <div class="section-title">
-                                            <h1 style="line-height: 1.1; color: #ffbd59; text-align: center; font-size: 38px !important; font-weight: 500 !important; font-family: 'League Spartan', sans-serif !important;">Pre-screening proposals can streamline the application process for all parties involved</h1>
-                                        </div>
-                                        <p class="text-muted1 mt-4 text-left" style="font-size: 14px !important;">Pre-screening proposals can optimize the application process for supervisors and candidates. By using a tool to collect and organize information, including the proposal, Education Profile, English Proficiency, and Work Experience, supervisors can filter out unqualified applicants and provide feedback to candidates before they invest more time.</p>
-                                        <p class="text-muted1 mt-4 text-left" style="font-size: 14px !important;">The tool's centralized communication system saves time and enhances the applicant experience. Utilizing this efficient tool improves the quality of the candidate pool and allows supervisors to spend more time evaluating and nurturing potential candidates.</p>
-                                        <div style="display: flex; justify-content: center;">
-                                            <p class="mt-4 mb-4"><span class="master-link secondary open_modal_page hand" data-title="Register Your Interest" data-url="{{route('modal-get',['name'=>'landing_ragister_your_interest'])}}"><strong style="font-weight: bolder !important; cursor:pointer;">Register Your Interest <i class="fa fa-arrow-right fea icon-sm"></i> </strong> </span></p>    
-                                        </div>
-                                    </div>
-                                </div>
-                            </div>
-                        </div>
-                    </div>
-                </div>   
-                    <!-- <div class="col-lg-7 cover-my-30 ms-5 ps-5">
-                        <div class="row">
-                            <div class="col-12">
-                                <div class="border-0" style="z-index: 1;">
-                                    <div class="card-body mt-5" style="padding: 0px;">
-                                        <p style="color:white; font-weight: 100 !important;"> Our free tool enables students to submit their proposals effortlessly while providing you with email notifications for each new submission. The days of searching through cluttered inboxes and struggling to keep track of proposals under review are over. With our user-friendly interface, you can efficiently manage and organize all your doctoral program proposals in one centralized location.</p>
-                                    
-                                        <p class="mt-4" style="color: white;">Our tool ensures that you never miss a proposal submission or waste time manually entering data. With all the necessary information at your fingertips, you can review proposals quickly and notify the decision to the applicants instantly.</p>
-                                        <p class="mt-4" style="color: white;">Our tool is entirely free, which means you can start using it immediately without incurring additional costs. By using our proposal management tool, you can save valuable time and feel more organized.</p>
-                                        <p class="mt-4" style="color: white;"><Strong style="font-weight: bolder !important; color: white;"> Do not let the chaos of proposal management overwhelm you any longer. </strong> Sign up for our free tool today and experience the stress-free solution you have been searching for.</p>
-                                        <div class="div">
-
-                                        </div>                                  
-                                    </div>
-                                </div>
-                            </div>
-                        </div>
-                    </div>        -->
-                </div><!--end row-->
-            </div><!--end container fluid-->
-        </section><!--end section-->
-        <footer class="footer footer-bar" style="background-color: #191e38; display: block;">
-            <div class="container-fluid text-center">
-                <div class="row align-items-center">
-                    <div class="col-md-6">
-                        <div style="text-align: left;">
-                        <p class="mb-0" style="color:white; margin-left: -2px; padding: 14px; font-size: 14px !important;">We aim to simplify research application for students and streamline management for supervisors with our comprehensive platform at Research Admission.</p>
-                        </div>
-                    </div><!--end col-->
-                        <div class="col-md-6">
-                            <div style="text-align: right;">
-                                <p class="mb-0" style="color:white; margin-left: -2px; padding: 14px;">Copyright © <script>document.write(new Date().getFullYear())</script>
-                                Research Admission</p>
-                            </div>
-                        </div>
-                    </div><!--end col-->
-                </div><!--end row-->
-            </div><!--end container-->
-        </footer>
-        <!-- javascript -->
-        <script src="{{asset('web/js/bootstrap.bundle.min.js')}}"></script>
-        <!-- tobii js -->
-        <script src="{{asset('web/js/tobii.min.js')}}"></script>
-        <!-- SLIDER -->
-        <script src="{{asset('web/js/tiny-slider.js')}}"></script>
-        <!-- Icons -->
-        <script src="{{asset('web/js/feather.min.js')}}"></script>
-        <!-- Main Js -->
-        <script src="{{asset('web/js/plugins.init.js')}}"></script>
-        <script src="{{asset('web/js/app.js')}}"></script>
-        
-        <script src="{{ asset('css/jquery.min.js') }}"></script>
-        <script src="{{ asset('css/jquery-form/dist/jquery.form.min.js') }}"></script>
-        <script src="{{ asset('css/pnotify/pnotify.js') }}"></script>
-        <script src="{{ asset('css/noty/lib/noty.min.js') }}"></script> 
-        <script src="{{ asset('css/flatpickr/dist/flatpickr.min.js') }}"></script>
-        <script src="{{ asset('css/wait-me/waitMe.min.js')}}"></script>
-
-
-        @include('web.layouts.modal')
-        <script>
-            function fetch_sub_content(selector, url, args=null){
-    
-                var config={
-                spinner: true
-                }
-    
-                if(typeof args=='object'){
-                config=Object.assign(config, args);
-                }
-    
-                if(config.spinner){
-    
-                $(selector).waitMe({
-                    effect: 'facebook',
-                    text: 'Please! Wait ...'
-                });
-    
-                }
-    
-                $(selector).load(url, null, function(){
-                $(selector).waitMe('hide');
-                if(typeof args=='function') args();
-                });
-    
-            }
-    
-            function wait_me(selector, config=null){
-    
-                if(config){
-    
-                    selector.waitMe(config);
-    
-                }else{
-    
-                    selector.waitMe({
-                        effect: 'facebook',
-                        //color: '#000',
-                        text: 'Please! Wait ...'
-                    });
-                }
-            }
-    
-    
-            function pop_up_msg(msg='No message specified', type='success', callback=null){
-                new Noty({
-                theme:'sunset',
-                text: msg,
-                type: type,
-                timeout:1500,
-                callbacks:{
-                    afterClose: callback
-                }
-                }).show();
-            }
-    
-            function err_msg(err){
-    
-                var msg="Request failed to process, try again later.";
-    
-                if(err.responseJSON && err.responseJSON.msg){
-                msg=err.responseJSON.msg;
-                }
-    
-                return msg;
-    
-            }
-    
-            function ajax_form(form, cllback=null, config={spinner: true}){
-    
-                $('.btn-submit').prop('disabled', true);
-                var redirect=$(form).data('redirect');
-    
-                if(typeof config=='object'){
-    
-                if(config.spinner) wait_me($(form));
-    
-                }
-    
-                $(form).ajaxSubmit({
-                success:function(res){
-    
-                    wait_me($(form), 'hide');
-    
-                    if(res.msg){
-    
-                    pop_up_msg(res.msg, 'success', function(){
-    
-                        $('.btn-submit').prop('disabled', false);
-    
-                        if(redirect) window.location.replace(redirect);
-                        else if(typeof cllback=='function'){
-                        cllback(form, res);
-                        }
-    
-                    });
-    
-                    }
-    
-                    //$.notify(res.msg, 'success');
-                },
-                error:function(res){
-    
-                    wait_me($(form), 'hide');
-    
-                    var msg="Request failed to process, try again later.";
-    
-                    if(res.responseJSON && res.responseJSON.msg){
-                    msg=res.responseJSON.msg;
-                    }
-    
-                    pop_up_msg(msg, 'error');
-                    $('.btn-submit').prop('disabled', false);
-    
-                }
-    
-                });
-    
-            } //End of ajax form definition
-
-            </script>
-        </body>
-  </html>

+ 0 - 242
resources/views/profile.blade - Copy.php

@@ -1,242 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
-        <meta charset="utf-8" />
-        <title>Research Admission</title>
-        <meta name="viewport" content="width=device-width, initial-scale=1.0">
-        <meta name="description" content="Information & Guidance on the PhD Process, Connect with Supervisor and Many" />
-        <meta name="keywords" content="" />
-        
-         <!-- facebook tags -->
-         <meta property="og:url" content="http://www.facebook.com/researchadmission"/>
-         <meta property="og:type" content="website"/>
-         <meta property="og:title" content="Research Admission"/>
-         <meta property="og:description" content="Information & Guidance on the PhD Process, Connect with Supervisor and Many"/>
-          <!-- Linkedin tags -->
-         <meta property="og:url" content="https://www.linkedin.com/company/researchadmission"/>
-         <meta property="og:type" content="website"/>
-         <meta property="og:title" content="Research Admission"/>
-         <meta property="og:description" content="Information & Guidance on the PhD Process, Connect with Supervisor and Many"/>
-
-        <!-- favicon -->
-        <link rel="shortcut icon" href="{{asset('web/images/logo.png') }}">
-        <!-- Bootstrap -->
-        <link href="{{ asset('web/css/bootstrap.min.css') }}" rel="stylesheet" type="text/css" />
-        <!-- tobii css -->
-        <link href="{{asset('web/css/tobii.min.css')}}" rel="stylesheet" type="text/css" />
-        <!-- Icons -->
-        <link href="{{asset('web/css/materialdesignicons.min.css')}}" rel="stylesheet" type="text/css" />
-        <link rel="stylesheet" type="text/css" href="{{ asset('web/stylesheets/font-awesome.min.css') }}" />
-        <link rel="stylesheet" href="https://unicons.iconscout.com/release/v3.0.6/css/line.css">
-        <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
-        
-        <!-- Slider -->               
-        <link rel="stylesheet" href="{{asset('web/css/tiny-slider.css')}}"/>
-        <!-- Main Css -->
-        <link href="{{asset('web/css/style.css')}}" rel="stylesheet" type="text/css" id="theme-opt" />
-        <link href="{{asset('web/css/colors/default.css')}}" rel="stylesheet" id="color-opt">
-        <link rel="preconnect" href="https://fonts.googleapis.com">
-        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
-        <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap" rel="stylesheet">
-        
-        <link rel="preconnect" href="https://fonts.googleapis.com">
-        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
-        <link href="https://fonts.googleapis.com/css2?family=Oswald:wght@200&family=Quicksand:wght@400;500;600;700&display=swap" rel="stylesheet">
-        <link rel="stylesheet" href="{{asset('web/css/datepicker.min.css')}}">
-        <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
-    </head>
-    <style>
-        #topnav {
-            background-color: #1E0A46;;
-        }
-        #topnav .navigation-menu > li > a {
-            color:white !important;
-        }
-        #topnav .navigation-menu {
-            display: initial;
-        }
-        .btn2{
-    background-color: #2e1153 !important; 
-    color:white !important; 
-    border-radius: 20px; 
-    box-shadow:none !important;
-    padding:4px 24px !important;
-    font-size:13px;
-}
-.btn2:hover{
-    background: #fff !important;
-    color:  #2e1153  !important;
-    border-radius: 20px;
-    border-color: #2e1153!important;
-}
-.btn3{
-    background-color: #2e1153 !important; 
-    color:white !important; 
-    border-radius: 20px; 
-    box-shadow:none !important;
-    padding:4px 111px !important;
-    font-size:13px;
-}
-.btn3:hover{
-    background: #fff !important;
-    color:  #2e1153  !important;
-    border-radius: 20px;
-    border-color: #2e1153!important;
-}
-.bg-half-170 {
-    padding:100px 0px 25px;
-}
-    </style>
-    <body>
-    <header id="topnav" class="defaultscroll sticky">
-            <div class="container">
-                <!-- Logo container-->
-                <div class="col-md-12">
-                    <div class="row">
-                        <div class="col md-6">
-                            <a class="logo" href="index.html">
-                                <img src="web/images/logo.png" height="100" class="logo-light-mode" alt="">
-                                <img src="web/images/logo.png" height="24" class="logo-dark-mode" alt="">
-                            </a>
-                        </div>
-                        <div class="col md-6">
-                            <div class="mt-4" style="display:flex; justify-content: end;">
-                                <i class="fa fa-user me-2" style="font-size: 13px; height: 25px; padding: 3.5px 5.9px; border: 2px solid #75A7FD; color: #75A7FD; border-radius: 100%;"></i>
-                                <p style="color:white;">My account</p>
-                                <i class="fa-sharp fa-solid fa-angle-down" style="margin-left:7px; margin-top:6px; color:#75A7FD;"></i>
-                            </div>
-                            <!-- End Logo container-->
-                        </div>
-                    </div>    
-                </div>
-            </div>
-            <div class="container">
-                <div id="navigation">
-                    <!-- Navigation Menu-->   
-                    <ul class="navigation-menu">
-                        <li><a href="{{ url('dashboard') }}" class="sub-menu-item" style="margin-top: -2rem;">Home</a></li>
-                        <li class="has-submenu parent-parent-menu-item">
-                            <a href="{{ url('application') }}" style="margin-top: -2rem;">My Application</a>
-                        </li>
-        
-                        <li class="has-submenu parent-parent-menu-item">
-                            <a href="{{ url('profile') }}" style="margin-top: -2rem;">Profile</a>
-                        </li>
-
-                        <li class="has-submenu parent-parent-menu-item">
-                            <a href="{{ url('explore') }}" style="margin-top: -2rem;">Explore</a>
-                        </li>
-                    </ul><!--end navigation menu-->
-                    <div class="buy-menu-btn d-none">
-                        <a href="https://1.envato.market/4n73n" target="_blank" class="btn btn-primary">Buy Now</a>
-                    </div><!--end login button-->
-                </div><!--end navigation-->
-            </div><!--end container-->
-        </header>
-        <section class="bg-half-170 d-table w-100" style="background-color: #efefef;">
-            <div class="container mt-5 pt-4">
-                <div class="col-md-12">
-                    <div class="row align-items-center">
-                        <div class="col-md-8 p-5" style="background-color:white; border-radius: 20px; height: 354px;">
-                            <div class="row">
-                                <div class="col-md-8">
-                                    <div class="mt-5 mb-2">
-                                        <div class="container-fluid" style="padding:0px !important;">
-                                            <div class="row">
-                                                <h5>Lorem ipsum dolor</h5>
-                                                <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Inventore, nulla!</p>                            
-                                            </div>
-                                        </div>                                                           
-                                    </div>
-                                </div>
-                                <div class="col-md-4">
-                                    <img src="web/images/contact.svg" class="img-fluid d-block mx-auto" alt="" style="height:180px;">
-                                </div><!--end col-->
-                                <div class="col-md-12">
-                                    <div class="row" style="display:flex;">
-                                        <div class="col-md-8">
-                                            <div class="mb-1">
-                                                <div class="form-icon position-relative">
-                                                    <input type="text" class="form-control" placeholder="" name="" required="">
-                                                </div>
-                                            </div>
-                                        </div>
-                                        <div class="col-md-4 mt-1">
-                                        <button class="btn btn2">Search</button>  
-                                        </div>
-                                    </div>  
-                                </div>
-                            </div>    
-                        </div>
-                        <div class="col-md-3 ms-5" style="background-color:white; border-radius: 20px;">
-                            <div class="row">
-                                <div class="col-md-12">
-                                    <div class="mt-2 mb-2">
-                                        <div class="container-fluid" style="padding:0px !important;">
-                                            <div class="row">
-                                                <h5 class="text-center">Lorem ipsum dolor</h5>
-                                                <img src="web/images/contact.svg" class="img-fluid d-block mx-auto" alt="" style="height:180px;">
-                                                <p class="text-center">Lorem ipsum dolor sit amet consectetur adipisicing elit. Inventore, nulla!</p>                            
-                                                <div class="col-md-10 mb-1">
-                                                <button class="btn btn3">Search</button>  
-                                                </div>
-                                            </div>
-                                        </div>                                                           
-                                    </div>
-                                </div>
-                            </div>    
-                        </div>
-                    </div><!--end row-->
-                </div><!--end container-->
-            </div>
-        </section>
-        <footer class="footer" style="background-color: #1E0A46;">
-            <div class="container">
-                <div class="row">
-                    <div class="col-md-4 mb-0 mb-md-4 pb-0 pb-md-2">
-                        <a href="#" class="logo-footer">
-                            <img src="images/logo-light.png" height="24" alt="">
-                        </a>
-                        <h5 class="text-light footer-head mt-5" style="font-weight:900;">Company</h5>
-                        <ul class="list-unstyled footer-list mt-4" style="color:white; font-weight:700;">
-                            <li> About us</a></li>
-                            <li> Services</a></li>
-                            <li>Team</a></li>
-                            <li>Pricing</a></li>
-                        </ul>
-                    </div><!--end col-->
-                    
-                    <div class="col-md-4 col-12 mt-5">
-                    <ul class="list-unstyled footer-list mt-5 pt-5" style="color:white; font-weight:700;">
-                            <li> Lorem, ipsum.</a></li>
-                            <li>Lorem, ipsum dolor.</a></li>
-                        </ul>
-                    </div><!--end col-->
-                    
-                    <div class="col-md-3 col-12 mt-4 pt-2">
-                    <h5 class="text-light footer-head mt-5" style="font-weight:900;">Company</h5>
-                        <ul class="list-unstyled footer-list mt-4" style="color:white; font-weight:700;">
-                            <li> About us</a></li>
-                            <li> Services</a></li>
-                            <li>Team</a></li>
-                            <li>Pricing</a></li>
-                        </ul>
-                    </div><!--end col-->
-                </div><!--end row-->
-            </div><!--end container-->
-        </footer>
-        <footer class="footer footer-bar" style="background-color: #1E0A46;">
-            <div class="container text-center">
-                <div class="row align-items-center">
-                    <div class="col-md-12">
-                        <div class="text-sm-start">
-                            <p class="mb-0">© <script>document.write(new Date().getFullYear())</script>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sequi, pariatur. 
-                            Lorem ipsum dolor sit amet consectetur <br>adipisicing elit. Molestiae, fugiat!</p>
-                        </div>
-                    </div><!--end col-->
-                </div><!--end row-->
-            </div><!--end container-->
-</footer>
-<script src="https://kit.fontawesome.com/1f077551f6.js" crossorigin="anonymous"></script>
-</body>
-</html>

+ 1 - 1
resources/views/landing.blade.php → resources/views/supervisor/landing.blade.php

@@ -278,7 +278,7 @@
                             </div>
                             <div class="col-md-3" style="display: flex;">
                                 <p class="mt-5 mb-4 text-center"><span class="master-link secondary open_modal_page hand" data-title="Register Your Interest" data-url="{{route('modal-get',['name'=>'landing_register_form'])}}"><strong style="font-weight: bolder !important; cursor:pointer; font-size: 17px;">Register Your Interest <i class="fa fa-arrow-right fea icon-sm"></i> </strong> </span></p>
-                                <p class="mt-5 ms-3"><a href="{{ url('login-v2') }}" class="master-link secondary"><strong style="font-weight: bolder !important;">Log In <i class="fa fa-arrow-right fea icon-sm"></i> </strong> </a></p>
+                                <p class="mt-5 ms-3"><a href="{{ url('/supervisor/login') }}" class="master-link secondary"><strong style="font-weight: bolder !important;">Log In <i class="fa fa-arrow-right fea icon-sm"></i> </strong> </a></p>
                             </div>
                         </div>
                     </div>

+ 5 - 5
resources/views/supervisor/layouts/header.blade.php

@@ -41,7 +41,7 @@
                                 @php
                                     $hashids = new \Hashids\Hashids('student_q_signup', 25);
                                 @endphp
-                                <div class="flag_country copy" style="display:flex; cursor:pointer;" data-clipboard-text="{{ url('q-apply/'.$hashids->encode(auth_user('teacher')->id)) }}">
+                                <div class="flag_country copy" style="display:flex; cursor:pointer;" data-clipboard-text="{{ url('/applicant/q-apply/'.$hashids->encode(auth_user('teacher')->id)) }}">
                                     <ul class="nav navbar-nav align-items-center ml-auto header_right ps-2">
                                         <li class="nav-item dropdown dropdown-notification">
                                             <a href="javascript:void(0)">
@@ -57,21 +57,21 @@
                                         </a>
                                     </li>
                                 </ul>
-                                <ul class="nav navbar-nav align-items-center ml-auto header_right ps-2">
+                                {{-- <ul class="nav navbar-nav align-items-center ml-auto header_right ps-2">
                                     <li class="nav-item dropdown dropdown-notification">
                                         <a href="">
                                             <h5 class="change_pass_btn" style="height: 33px; margin-top: 7px; padding: 4px 9px;">IZ</h5>
                                         </a>
                                     </li>
-                                </ul>
+                                </ul> --}}
                                 <ul class="nav navbar-nav align-items-center ml-auto header_right ps-2">
                                     <li class="nav-item dropdown dropdown-notification">
-                                        <a href="{{ url('teacher-logout') }}"
+                                        <a href="{{ url('/supervisor/teacher-logout') }}"
                                             onclick="event.preventDefault();
                                                             document.getElementById('logout-form').submit();">
                                              <i class="fa fa-sign-out change_pass_btn"></i>
                                         </a>
-                                        <form id="logout-form" action="{{ url('teacher-logout') }}" method="POST" class="d-none">
+                                        <form id="logout-form" action="{{ url('/supervisor/teacher-logout') }}" method="POST" class="d-none">
                                             @csrf
                                         </form>
                                     </li>

+ 27 - 23
routes/web.php

@@ -29,17 +29,17 @@ Route::get('/', function () {
 });
 
 
-Route::get('/dashboard', function () {
-    return view('dashboard');
-});
+// Route::get('/dashboard', function () {
+//     return view('dashboard');
+// });
 
-Route::get('/explore', function () {
-    return view('application.explore');
-});
+// Route::get('/explore', function () {
+//     return view('application.explore');
+// });
 
-Route::get('/landing', function () {
-    return view('landing');
-});
+// Route::get('/landing', function () {
+//     return view('landing');
+// });
 
 Route::get('/fixemail', function () {
     return view('fixemail');
@@ -47,21 +47,22 @@ Route::get('/fixemail', function () {
 
 
 
-Auth::routes();
+// Auth::routes();
 
 //Route::get('/email-verification/{id}', [App\Http\Controllers\RegisterController::class,'email_verification'])->name('/email-verification');
 
-Route::get('/login', [App\Http\Controllers\Auth\LoginController::class,'showLoginForm'])->name('login');
-Route::post('/student-login', [App\Http\Controllers\Auth\LoginController::class,'login'])->name('student-login');
-Route::get('register', [App\Http\Controllers\Auth\RegisterController::class,'showRegistrationForm'])->name('register');
-Route::post('student-register', [App\Http\Controllers\Auth\RegisterController::class,'create'])->name('student-register');
-Route::get('/verify/{token}', [App\Http\Controllers\Auth\RegisterController::class,'email_verification'])->name('email-verification');
 
-Route::get('q-apply/{hash}', [App\Http\Controllers\HomeController::class,'student_q_form']);
-Route::get('register/{hash}', [App\Http\Controllers\HomeController::class,'q_apply_register_form']);
  
 
 Route::group(['prefix' => 'applicant'], function () { 
+    Route::get('/login', [App\Http\Controllers\Auth\LoginController::class,'showLoginForm'])->name('login');
+    Route::post('/student-login', [App\Http\Controllers\Auth\LoginController::class,'login'])->name('student-login');
+    Route::get('register', [App\Http\Controllers\Auth\RegisterController::class,'showRegistrationForm'])->name('register');
+    Route::post('student-register', [App\Http\Controllers\Auth\RegisterController::class,'create'])->name('student-register');
+    Route::get('/verify/{token}', [App\Http\Controllers\Auth\RegisterController::class,'email_verification'])->name('email-verification'); 
+    Route::get('q-apply/{hash}', [App\Http\Controllers\HomeController::class,'student_q_form']);
+    Route::get('register/{hash}', [App\Http\Controllers\HomeController::class,'q_apply_register_form']);
+
     Route::get('/password/reset', [App\Http\Controllers\Auth\ForgotPasswordController::class,'showLinkRequestForm'])->name('password.reset');
     Route::post('/password/email',[App\Http\Controllers\Auth\ForgotPasswordController::class,'sendResetLinkEmail'])->name('password.request');
     Route::get('/password/reset/{token}', [App\Http\Controllers\Auth\ResetPasswordController::class,'showResetForm']);
@@ -96,15 +97,18 @@ Route::get('/home/search', [App\Http\Controllers\StudentHomeController::class,'r
 
 
 // Teacher
-Route::get('register-v2/{hash}', [App\Http\Controllers\HomeController::class,'invited_register_form']);
-Route::get('register-v2', [App\Http\Controllers\AuthSupervisor\RegisterController::class,'showRegistrationForm']);
-Route::post('register-v2/teacher-register-v2', [App\Http\Controllers\AuthSupervisor\RegisterController::class,'create'])->name('teacher-register-v2');
-Route::get('/login-v2', [App\Http\Controllers\AuthSupervisor\LoginController::class,'showLoginForm']);
-Route::post('/teacher-login', [App\Http\Controllers\AuthSupervisor\LoginController::class,'login'])->name('teacher-login');
-Route::post('teacher-logout', [App\Http\Controllers\AuthSupervisor\LoginController::class,'logout'])->name('teacher-logout');
+
 
 Route::group(['prefix' => 'supervisor'], function () { 
 
+    Route::get('welcome', [App\Http\Controllers\HomeController::class,'landing']); 
+    Route::get('register/{hash}', [App\Http\Controllers\HomeController::class,'invited_register_form']);
+    Route::get('register', [App\Http\Controllers\AuthSupervisor\RegisterController::class,'showRegistrationForm']);
+    Route::post('register-v2/teacher-register-v2', [App\Http\Controllers\AuthSupervisor\RegisterController::class,'create'])->name('teacher-register-v2');
+    Route::get('login', [App\Http\Controllers\AuthSupervisor\LoginController::class,'showLoginForm']);
+    Route::post('/teacher-login', [App\Http\Controllers\AuthSupervisor\LoginController::class,'login'])->name('teacher-login');
+    Route::post('teacher-logout', [App\Http\Controllers\AuthSupervisor\LoginController::class,'logout'])->name('teacher-logout');
+
     Route::get('/password/reset', [App\Http\Controllers\AuthSupervisor\ForgotPasswordController::class,'showLinkRequestForm'])->name('password.reset');
     Route::post('/password/email',[App\Http\Controllers\AuthSupervisor\ForgotPasswordController::class,'sendResetSupervisorLinkEmail'])->name('password.email');
     Route::get('/password/reset/{token}', [App\Http\Controllers\AuthSupervisor\ResetPasswordController::class,'showResetForm']);