public function createBranch($id)
 {
     $branch = new PartnerBranch();
     $branch_params = Input::except('_token', 'submit1');
     $branch->address = Input::get('home') . Input::get('barangay') . Input::get('street') . Input::get('city') . Input::get('province') . Input::get('country');
     $branch->fill($branch_params)->save();
     return redirect()->action('Deskpad\\BranchController@showbranch', $id)->with('message', 'Branch Successfully Added.');
 }