mirror of
https://github.com/10h30/Test-Laravel-Validation.git
synced 2026-06-05 15:07:56 +09:00
10 lines
305 B
PHP
10 lines
305 B
PHP
<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" value={{ old('name') }}/>
|
|
<br /><br />
|
|
<button type="submit">Save</button>
|
|
</form>
|