register.php
Client registration view.
Renders a centered registration card for new restaurant/business owners. Uses the old() helper pattern via Session::get('_old_input.fieldname', '') for repopulating form fields after validation failures. This view is rendered inside a layout wrapper — do not include doctype, head, or body tags.
Tags
Table of Contents
Functions
- old() : string
- Retrieve old form input from the session.
Functions
old()
Retrieve old form input from the session.
old(string $field[, string $default = '' ]) : string
Parameters
- $field : string
-
The input field name.
- $default : string = ''
-
Default value if no old input exists.