Hello everyone,
Just have a quick question about sending information from an order form on the a Vue frontend to a Laravel backend API. The form will be public for anyone to fill out but will have sensitive information such as addresses, contact numbers etc
I would like the data sent from the frontend to be encrypted, ideally have some sort restriction so only the frontend can submit orders to the backend.
Recent examples I've seen online are related to Sanctum and mostly have logins, and it's not ideal to ask public users to register/login before making an order.
Will CSRF, CORS and SSL be enough, or do I need something more?
Thank you