⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
erp.dev-unit.com
/
resources
/
views
/
auth
/
View File Name :
forgot-password.blade.php
@extends('layouts.auth') @section('page-title') {{ __('Reset Password') }} @endsection @section('language-bar') <div class="lang-dropdown-only-desk"> <li class="dropdown dash-h-item drp-language"> <a class="dash-head-link dropdown-toggle btn" href ="#" data-bs-toggle="dropdown" aria-expanded="false"> <span class="drp-text"> {{ Str::upper($lang) }} </span> </a> <div class="dropdown-menu dash-h-dropdown dropdown-menu-end"> @foreach (languages() as $key => $language) <a href="{{ url('/forgot-password', $key) }}" class="dropdown-item @if ($lang == $key) text-primary @endif"> <span>{{ Str::ucfirst($language) }}</span> </a> @endforeach </div> </li> </div> @endsection @php $admin_settings = getAdminAllSetting(); @endphp @section('content') <div class="card"> <div class="card-body"> <div class=""> <h2 class="mb-3 f-w-600">{{ __('Forgot Password') }}</h2> @if (session('status')) <div class="alert alert-primary"> {{ session('status') }} </div> @endif <p class="text-xs text-muted">{{ __('We will send a link to reset your password') }}</p> </div> <form method="POST" action="{{ route('password.email') }}" id="form_data" class="needs-validation" novalidate=""> @csrf <div class=""> <div class="form-group mb-3"> <label for="email" class="form-label">{{ __('Email') }}</label> <input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email" autofocus> @error('email') <span class="error invalid-email text-danger" role="alert"> <small>{{ $message }}</small> </span> @enderror </div> @stack('recaptcha_field') <div class="d-grid"> <button class="btn btn-primary btn-submit btn-block mt-2">{{ __('Send Password Reset Link') }} </button> </div> <p class="my-4 mb-0 text-center">{{ __('Or') }} <a href="{{ route('login', $lang) }}" class="my-4 text-primary">{{ __('Login') }}</a>{{ __(' With') }} </p> </div> </form> </div> </div> @endsection