51 lines
2.7 KiB
PHP
51 lines
2.7 KiB
PHP
@extends('layouts' . '.' . get_frontend_settings('theme'))
|
|
@push('title', get_phrase('Reset Password'))
|
|
@push('meta')@endpush
|
|
@push('css')
|
|
@endpush
|
|
@section('content')
|
|
<!------------------- Login Area Start ------>
|
|
<section class="login-area">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-7 col-md-6">
|
|
<div class="login-img text-center">
|
|
<img class="w-75 h-auto ms-auto me-auto" src="{{ asset('assets/frontend/default/image/login.gif') }}" alt="...">
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-5 col-md-6">
|
|
<form action="{{ route('password.store') }}" method="post">
|
|
@csrf
|
|
<input type="hidden" name="token" value="{{ $request->route('token') }}">
|
|
|
|
<h4 class="g-title">{{ get_phrase('Reset Password') }}</h4>
|
|
<p class="description">{{ get_phrase('Submit your account email address.') }} </p>
|
|
<div class="form-group">
|
|
<label for="email" class="form-label">{{ get_phrase('Email') }}</label>
|
|
<input type="email" name="email" :value="old('email', $request->email)" required class="form-control lsForm-control signLog-input" id="email" placeholder="{{ get_phrase('Your Email') }}" />
|
|
</div>
|
|
|
|
|
|
<div class="form-group">
|
|
<label for="" class="form-label">{{ get_phrase('Password') }}</label>
|
|
<input type="password" name="password" required class="form-control lsForm-control signLog-input" id="password" placeholder="{{ get_phrase('Password') }}" />
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="password_confirmation" class="form-label">{{ get_phrase('Confirm Password') }}</label>
|
|
<input type="password" name="password_confirmation" required autocomplete="new-password" required class="form-control lsForm-control signLog-input" id="password_confirmation" placeholder="{{ get_phrase('Confirm Password') }}" />
|
|
</div>
|
|
|
|
<button type="submit" class="eBtn gradient w-100 mt-5">{{ get_phrase('Send Request') }}</button>
|
|
<a href="{{route('login')}}" class="eBtn gradient w-100 mt-5 text-center">{{ get_phrase('Back to login page') }}</a>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!------------------- Login Area End ------>
|
|
@endsection
|
|
@push('js')
|
|
|
|
@endpush
|