32 lines
681 B
PHP
32 lines
681 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 style="margin-top:8px;">
|
|
<label for="nombre">Nombre</label><br>
|
|
<input id="nombre" readonly name="nombre" type="text"
|
|
value="{{ $per->nombre }}">
|
|
</div>
|
|
|
|
<div style="margin-top:12px;">
|
|
<a href="{{ route('personas.index') }}">Volver al listado</a>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|