I have simple Form:
<form method="post" action="{{ route('company.store') }}">
Logo: <br>
<input name="logo" type="file"><br>
In my controller i try to save image with
$file = $request->file('logo')->store('avatars');
but i have error
"Call to a member function store() on null"
dd($request->file('logo'); shows 'null'
How to reach file to save it?