/**
  * Show the form for creating a new resource.
  *
  * @return Response
  */
 public function create(Request $request)
 {
     $this->validate($request, ['name' => 'required|min:3']);
     if (GarbageType::create($request->except('_token'))) {
         return redirect()->back()->withSuccess('Garbage Type added');
     } else {
         return redirect()->back()->withSError('Failed to add new status');
     }
 }