@extends('layouts.app') @section('title', app()->getLocale() == 'ar' ? 'استعادة كلمة المرور' : 'Forgot Password') @section('content')

{{ app()->getLocale() == 'ar' ? 'استعادة كلمة المرور' : 'Forgot Password' }}

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif

{{ app()->getLocale() == 'ar' ? 'أدخل بريدك الإلكتروني وسنرسل لك رابط إعادة التعيين' : 'Enter your email and we will send you a reset link' }}

@csrf
@endsection