48 lines
706 B
PHP
48 lines
706 B
PHP
<!doctype html>
|
|
<html lang="es">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Ver Persona</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Ver Persona</h1>
|
|
|
|
<div>
|
|
<label>Nombre</label><br>
|
|
|
|
<input type="text"
|
|
readonly
|
|
value="{{ $persona->nombre }}">
|
|
</div>
|
|
|
|
<div style="margin-top:10px;">
|
|
<label>Apellido</label><br>
|
|
|
|
<input type="text"
|
|
readonly
|
|
value="{{ $persona->apellido }}">
|
|
</div>
|
|
|
|
<div style="margin-top:10px;">
|
|
<label>DNI</label><br>
|
|
|
|
<input type="text"
|
|
readonly
|
|
value="{{ $persona->dni }}">
|
|
</div>
|
|
|
|
<div style="margin-top:15px;">
|
|
|
|
<a href="{{ route('personas.index') }}">
|
|
Volver
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|
|
|