I'm using SSL for my website (Cloudflare HTTPS) in my login for weh I use ``, Laravel won't convert my website link to SSL version and it shows http
version. How can I force Laravel to use https
for me?
For example:
<?=Form::open(array('id' =>'submit'))?>
. . .
<?=Form::close()?>
And the result will be:
<form method="POST" action="http://example.com" accept-charset="UTF-8" id="submit">
</form>
I want action
to be a HTTPS
link.