'Is it possible to make a Hash MD5 in Laravel Blade?
In my form, i need to make a hash then submit it as POST.
<form action="{{ route('api') }}" method="POST">
<input type="hidden" name="Hash" value="{{ md5('2019030428' . '54321' . 'Juan dela Cruz' }}">
<button type="submit" value="API POST">Submit</button>
</form>
is this correct? The instruction says i need to pass it as HASH lowercase md5
Solution 1:[1]
You can also try with
{{strtolower(md5('STRING Is here'))}}
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Esteban Chacon |
