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/profile.blade.php
<h1>{{__('profile.new user')}}</h1>
@if(session('message'))
<h3 style="color:purple">{{session('message')}} {{__('profile.user has been added.')}}</h3>
@endif
<form action="/save " method="post" enctype="multipart/form-data">
    @csrf
    <input type="text" name="name" placeholder={{__('profile.enter user name')}}><br><br>
    <input type="email" name="email" placeholder={{__('profile.enter user email')}}><br><br>
    <input type="password" name="password" placeholder={{__('profile.enter user password')}}><br><br>
    <input type="file" name={{__('profile.file')}}><br><br>
    <button type="submit">{{__('profile.add user')}}</button>
</form>