$from = ['email'=>$input['email'],
'subject'=>$input['subject']
$data = ['company'=>$input['company'],
'address'=>$input['address'],
'email'=>$input['email'],
'subject'=>$input['subject'],
Mail::send('emails.post', $data, function($message) use ($from, $to) {
$message->from($from['email'], $from['name']);
$message->to($to['email'], $to['name'])->subject($from['subject']);