To let your users authenticate using a passkey, you can include the authenticate-passkey
Blade component in your view, typically on your login view.
<x-authenticate-passkey />
Here's what the component looks like by default:

The layout is intentionally very basic, you can style it as you like it yourself.
This component will show a link that, when clicked, will start the passkey authentication process.

##Redirection after login
If the authentication is successful, the user will be redirected to the URL specified in the redirect_to_after_login
key of the passkeys
config file.
Alternatively, you can pass a URL to the redirect
prop of the component.
<x-authenticate-passkey redirect="/dashboard" />