16 líneas
307 B
PHP
16 líneas
307 B
PHP
<html>
|
|
|
|
<body>
|
|
<h1>Buscador</h1>
|
|
<form action="/buscador" method="post">
|
|
@csrf
|
|
<input name="contenido" type="text">
|
|
<button type="submit">Buscar</button>
|
|
</form>
|
|
@error('contenido')
|
|
<div style="color: red;">{{ $message }}</div>
|
|
@enderror
|
|
</body>
|
|
|
|
</html>
|
