@extends('layouts.loginapp')
@section('title')Forgot Password  @endsection
@section('content')

<div class="login-box">
  <div class="login-logo">

     <a href="{{ url('/') }}">

        <img src="{{ asset('images/spiritre.png') }}" alt="">
    </a>


</div>
<!-- /.login-logo -->
<div class="login-box-body">




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

    <?php //echo session('emaid_id'); ?>
    
    <input type="hidden" name="token" value="{{ $token }}">

    <div class="form-group row">
        <label for="email" class="col-md-4 col-form-label text-md-right">{{ __('E-Mail Address') }}</label>

        <div class="col-md-6">
            <input id="email" type="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" value="{{ (!empty(session('emaid_id'))?session('emaid_id'):'') }}" required autofocus {{ (!empty(session('emaid_id'))?'readonly':'') }}>

            @if ($errors->has('email'))
            <span class="invalid-feedback" role="alert">
                <strong>{{ $errors->first('email') }}</strong>
            </span>
            @endif
        </div>
    </div>

    <div class="form-group row">
        <label for="password" class="col-md-4 col-form-label text-md-right">{{ __('Password') }}</label>

        <div class="col-md-6">
            <input id="password" type="password" onkeydown="disableSpace(event)" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" name="password" required>

            @if ($errors->has('password'))
            <span class="invalid-feedback" role="alert">
                <strong>{{ $errors->first('password') }}</strong>
            </span>
            @endif
        </div>
    </div>

    <div class="form-group row">
        <label for="password-confirm" class="col-md-4 col-form-label text-md-right">{{ __('Confirm Password') }}</label>

        <div class="col-md-6">
            <input id="password-confirm" type="password" class="form-control" name="password_confirmation" required>
        </div>
    </div>

    <div class="form-group row mb-0">
        <div class="col-md-6 offset-md-4">
            <button type="submit" class="btn btn-primary" id="resetPassword">
                {{ __('Reset Password') }}
                <span class="customLoaderSpin"></span>
            </button>
        </div>
    </div>
</form>



</div>
</div>
<!-- /.login-box-body -->
<!-- </div> -->
<!-- /.login-box -->
<script>
    function disableSpace(e) {
        if (e.key === " ") {
            e.preventDefault();
        }
    }
</script>

@endsection
