@php
$isArabic = app()->getLocale() === 'ar';
$positionStyle = $isArabic
? 'top: 80px; left: 20px;'
: 'top: 80px; right: 20px;';
@endphp
@if (session('success'))
{{ session('success') }}
@endif
@if (session('error'))
{{ session('error') }}
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif