I'm create a web using laravel on a https website example: https://examples.com. And I have a blade view which has a form with action to another page https://examples.com/next I used this in my blade file: <form action="{{url("next")}}" method="POST" id="page">.
But when I test on browser, it show an warning like: Mixed Content: The page at 'https://examples.com' was loaded over a secure connection, but contains a form that targets an insecure endpoint 'http://examples.com/next'. This endpoint should be made available over a secure connection.
When I inspect <form>, it show <form action="http://examples.com/next" method="POST" id="page">
Anyone has idea about this? Thanks