| Server IP : 104.21.26.206 / Your IP : 216.73.216.227 [ Web Server : Apache System : Linux frog 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web13 ( 5017) PHP Version : 8.3.31 Disable Function : NONE Domains : 41 Domains MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/clients/client12/web13/web/ahelos/resources/views/auth/passwords/ |
Upload File : |
@extends('layouts.frontend.index')
@section('head_metas')
<title>{{ __('Забравена парола') }} | Ahelos</title>
@endsection
@section('content')
<section class="password-reset">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-5">
<h1>{{ __('Забравена парола') }}</h1>
@if (session('danger'))
<div class="alert alert-danger form-group">
{{ session('danger') }}
</div>
@endif
@if (session('success'))
<div class="alert alert-success form-group">
{{ session('success') }}
</div>
@endif
<div id="forgotten-password" class="box contact-box">
<span class="title">Възтановяване на парола</span>
<form method="POST" action="{{ route('password.email.page') }}">
@csrf
<div class="form-group">
<label for="email" class="">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="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
<div class="form-group">
<button type="submit" class="btn btn-main">
{{ __('Изпрати линк за нулиране') }}
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
@endsection