HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-172-26-0-120 6.17.0-1009-aws #9~24.04.2-Ubuntu SMP Fri Mar 6 23:50:29 UTC 2026 x86_64
User: ubuntu (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
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>