Eshban Bahadur
Eshban Bahadur

Reputation: 1022

Laravel fetch value from another source

In PHP I use following code to fetch value from another source

<input type="hidden" name="email" id="email" value="<?=$_REQUEST['HOOK_URL'];?>" 

How can I do this in Laravel form?

Thanks

Upvotes: 0

Views: 59

Answers (1)

Eshban Bahadur
Eshban Bahadur

Reputation: 1022

This issue has been sorted. I have used this:

<form id="form" name="frmbasket" action="SAPEVENT:POST" method="post">

Upvotes: 0

Related Questions