18 lines
590 B
PHP
18 lines
590 B
PHP
<form action="{{ route('persona.store') }}" method="POST">
|
|
@csrf
|
|
<div>
|
|
<label for="nombre">Nombre *</label><br>
|
|
<input id="nombre" name="nombre" type="text" required>
|
|
</div>
|
|
<div style="margin-top:8px;">
|
|
<label for="apellido">Apellido</label><br>
|
|
<input id="apellido" name="apellido" type="text">
|
|
</div>
|
|
<div style="margin-top:8px;">
|
|
<label for="dni">DNI</label><br>
|
|
<input id="dni" name="dni" type="text">
|
|
</div>
|
|
<div style="margin-top:8px;">
|
|
<input type="submit" value="Guardar">
|
|
</div>
|
|
</form> |