Gfabrij/resources/views/personas/showPlano.blade.php

37 lines
674 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>Detalle de la persona</h1>
<div>
<label>Apellido:</label><br>
<input readonly type="text" value="{{ $per->apellido }}">
</div>
<div style="margin-top:8px;">
<label>Nombre:</label><br>
<input readonly type="text" value="{{ $per->nombre }}">
</div>
<div style="margin-top:8px;">
<label>DNI:</label><br>
<input readonly type="text" value="{{ $per->dni }}">
</div>
<a href="{{ route('personas.index') }}">Volver al listado</a>
</div>
</body>
</html>