@extends('layouts.auth') @section('title', 'Şifremi Unuttum') @section('content') @php $logo = null; foreach (['assets/logo.jpg', 'assets/logo.jpeg', 'assets/logo.png'] as $candidate) { if (file_exists(public_path($candidate))) { $logo = asset($candidate); break; } } @endphp
@if ($logo) @endif

Şifremi Unuttum

E-posta adresinizi girin, şifre yenileme bağlantısı gönderelim.

@if (request()->query('sent'))
E-posta gönderildi. Gelen kutunuzu kontrol edin.
@endif @if ($errors->any())
{{ $errors->first() }}
@endif @if (!request()->query('sent'))
@csrf
@endif
@endsection