Level 28
You can wrap your textbox with a form that points to the current page and name the textbox "page", then the enter should automatically reload the current url with the page parameter.
<form action="{{ url()->current() }}" method="get">
<input type="text" name="page">
</form>
Maybe you need an invisible "submit" element too, I'm not quite sure.