Task 5 - old values staying in the form

This commit is contained in:
PovilasKorop
2021-11-29 13:41:46 +02:00
parent 7d3ccdd6ec
commit b7eaace432
7 changed files with 103 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<form method="POST" action="{{ route('teams.store') }}">
@csrf
Name:
<br />
{{-- TASK: change this field so it would contain old value after validation error --}}
<input type="text" name="name" />
<br /><br />
<button type="submit">Save</button>
</form>