?
Current File : /home/sanghavirealty/public_html/resourcesazwer/views/authviews/forgot-password.blade.php
@extends('loginlayout.login-layout-design',[
    'admintitle'=> 'Forgot Password'
    
    ])
    
    
    @section('content')

                <div class="col-lg-12 col-md-12 d-flex flex-column ms-auto me-auto login">
                <div class=" text-center loginlogo">
                <img class="mb-3" src="{{url('userassets')}}/logo.png"> </div>
                <h6 class=" mt-4 text-center">Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.</h6>
           

                <div class=" form-top alert alert-danger">
                    @include('error.error-display')
                   @if(session('status'))

          enable this
          {{session('status')}}
          @endif
                    </div>


         


    <form method="POST" action="{{ route('password.request')}}">
        @csrf

        
<div class="form-group mb-2">

    <input id="email" class="form-control" type="email" name="email" value="{{old('email')}}" required autofocus placeholder='Email'/>
<label for="floatingInput">Email address</label>
    </div>
   <div class="loginbtn my-3">
    <button class="w-100 btn btn-primary hvr-bounce-to-top fade-in"  type="submit" class="form-control" >Email Password Reset Link  <i class="fa fa-arrow-right"></i></button>
</div>
 
 

    </form>   

    @stop