@extends('backend.install.index') @section('content')

Finally let set your site url

If you are going to use the site with full https, please do a redirect 301 for all url from non-https to https. Otherwise the system will not working correctly. You can do that by edit file public/.htaccess, remove comment (#) form line 9 and 10.

Before

#RewriteCond %{HTTPS} off
#RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
    

After

RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
    
@endsection