I don't know how to send datas (in POST) to another site than mine with Laravel Form.
I tried a (GET) form :
{!! Form::open(array('url' => 'http://other.domain.com')) !!}
<input type="text" name="test" value="something" />
<button type="submit">Submit</button>
{!! Form::close() !!}
It stays in : mydomain:8000/mypage?test=something
But I want this to be http://other.domain.com?test=something
Any clue?