How to pass a value to hidden input ?
Create form :
@if (isset($id))
{!! Form::hidden(\'edition\', $id) !!}
@endif
I got the form i
Usually, this is used in Blade templates.
Just pass the name and value to the method.
{{ Form::hidden('invisible', 'secret') }}
This creates a very simple element which looks like the following.
To add other attributes, pass a third argument to the method. This third argument must be an array.
{{ Form::hidden('invisible', 'secret', array('id' => 'invisible_id')) }}
Now the input has an id attribute.
Check out : Creating a Hidden Input Field
In controller method check
public function store(Request $request)
{
$name = $request->input('name');
}