@extends('backoffice.authentification.layouts_auth.app_auth') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

تعيين كلمة المرور

@csrf
@error('password') {{ $message }} @enderror
@error('password_confirmation') {{ $message }} @enderror
  • يجب أن تحتوي على 8 أحرف على الأقل
  • يجب أن تحتوي على حرف كبير واحد على الأقل
  • يجب أن تحتوي على حرف صغير واحد على الأقل
  • يجب أن تحتوي على رمز خاص واحد على الأقل

@endsection