Task 3 - errors shown in validation Blade

This commit is contained in:
PovilasKorop
2021-11-29 13:17:49 +02:00
parent b2e5f809ab
commit 2d5c8bf49d
7 changed files with 114 additions and 0 deletions
+8
View File
@@ -48,3 +48,11 @@ Test method `test_array_validation()`.
---
## Task 3. Showing Validation Errors.
In `resources/views/projects/create.blade.php` file, show the validation errors, for `"name" => "required", "description" => "required"` rules. Use whatever HTML structure you want, like `<ul><li>error</li><li>error 2</li></ul>`. No design needed, the test will just check if the error messages are present.
Test method `test_validation_errors_shown_in_blade()`.
---