38 lines
830 B
PHP
38 lines
830 B
PHP
<!doctype html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Ver persona</title>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Ver persona</h1>
|
|
|
|
|
|
|
|
<div>
|
|
<label for="apellido">Apellido *</label><br>
|
|
<input id="apellido" name="apellido" readonly type="text"
|
|
value="{{ $per->apellido }}" >
|
|
</div>
|
|
|
|
<div>
|
|
<label for="nombre">Nombre *</label><br>
|
|
<input id="nombre" name="nombre" readonly type="text"
|
|
value="{{ $per->nombre }}" >
|
|
</div>
|
|
|
|
<div style="margin-top:8px;">
|
|
<label for="dni">DNI</label><br>
|
|
<input id="dni" readonly name="dni" type="text"
|
|
value="{{ $per->dni }}">
|
|
</div>
|
|
|
|
<div style="margin-top:12px;">
|
|
<a href="{{ route('personas.index') }}">Volver al listado</a>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|