I have a blade template that includes a form and the forms action is a Laravel route with a name.
<form method="POST" action="{{ route('send-email') }}">
When this is compiled on my webpage the route is http but I want it to be https e.g.
<form method="POST" action="http://myexamplesite.com/send-email">
How can I change it so it always uses https?
like: <form method="POST" action="https://myexamplesite.com/send-email">
My routes file:
Route::post('send-user-email', 'SendUserEmailController@store')->name('send-email');