JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "reset-password.blade.php"
Full Path: /home2/yvrgircc/public_html/ariseskilltech.com/resources/views/auth/reset-password.blade.php
File size: 2.69 KB
MIME-type: text/html
Charset: utf-8
@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