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

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

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