Empty tag doesn't work in some browsers warning in PhpStorm (Laravel 7) - phpstorm

When I want to use Laravel 7 component, the PhpStorm shows an annoying warning. How could I fix such behavior or disable this warning?

Try disabling HTML | Empty tag inspection in Settings | Editor | Inspections

Related

PhpStorm add Angle brackets with tab

I start with PhpStorm but I don't understand why it adds angle bracket every time I press Tab.
In a html file (| cursor position) I type a then [Tab]. I get I write I have | and then if I write this[Tab] I have <this>|</this>!
No matter where I write to an htlm file, I have this behavior! In a php file, it simply doesn't make a tab. I reset the settings by deleting file ~/Library/Preferences/PhpStrom2017.2. But it's always the same.
If you want to get rid of this behaviour for HTML files you can do this.
Settings | Emmet | HTML | Enable XML/HTML Emmet
-- disable this option.

How do I stop PhpStorm 2016.2 from entering the form tag when I type the word "form" into a paragraph?

After typing the word "form" and entering a space, PhpStorm makes a form! No! No! How do I get PhpStorm to stop doing that?
p.s. stackoverflow won't let me post the images because my reputation is <10 :(
UPDATE. My progress.. or lack thereof:
I've done this without success:
Settings | Emmet | XML | Enable XML Emmet -- disable this option. (as recommended in How can I disable html tag completion in PHPStorm)
Settings | Editor | General | Code Completion | Autopopup code completion -- unchecked it (as recommended in Turn off autocomplete in PhpStorm)
Settings | Editor | General | SmartKeys | XML/HTML | Auto Close tags when typing

Turn off highlights

I want to turn off PHPStorm's annoying highlighting for non-error related things.
I read their docs, which said to go to preferences->editor->inspections. I deselected all for SQL, yet I still get this green highlighting for no reason:
How do I disable this? It's quite distracting.
That's Language Injection in action.
You can:
Remove/change background color at Settings (Preferences on Mac) | Editor | Colors & Fonts | General --> Code | Injected language fragment
Disable that particular injection rule altogether at Settings (Preferences on Mac) | Editor | Language Injections

How do I disable html closing tag completion?

In phpstorm whenever I type </ it automatically closes what it thinks is the appropriate tag to close but I'd like to turn this off, but I cannot find the setting to do this. Does anyone know what setting this is?
Settings | Editor | Smart Keys | Automatically insert closing tag
P.S.
Settings screen has very handy search box which will narrow possible settings a lot.

How can I disable html tag completion in PHPStorm

When I'm in HTML/Other context and type foobar and hit Tab it automatically turns into <foobar></foobar>. Is there any option to turn this kind of auto complete off?
Settings | Emmet | XML | Enable XML Emmet -- disable this option.