/**
  * Show the form for creating a new resource.
  *
  * @return Response
  */
 public function create()
 {
     $accounts = Account::getLists();
     return view('customer.create', compact('accounts'));
 }