File: //var/www/html/owlcrm/app/first-project/resources/views/add/add.blade.php
<h1>add new user</h1>
@if(session('message'))
<h3 style="color:purple">{{session('message')}} user has been added.</h3>
@endif
<form action="/save " method="post" enctype="multipart/form-data">
@csrf
<input type="text" name="name" placeholder="enter user name"><br><br>
<input type="email" name="email" placeholder="enter user email"><br><br>
<input type="password" name="password" placeholder="enter user password"><br><br>
<input type="file" name="file"><br><br>
<button type="submit">add user</button>
</form>